Merge pull request #8185 from desiderius/master

python-packages: updates pyinotify 0.9.3 to 0.9.5
This commit is contained in:
lethalman 2015-06-05 18:38:36 +02:00
commit b19cae8544

View File

@ -9697,22 +9697,15 @@ let
}; };
}; };
pyinotify = pkgs.stdenv.mkDerivation rec { pyinotify = buildPythonPackage rec {
name = "python-pyinotify-${version}"; name = "pyinotify";
version = "0.9.3"; version = "0.9.5";
src = pkgs.fetchgit { src = pkgs.fetchurl {
url = "git://github.com/seb-m/pyinotify.git"; url = "https://pypi.python.org/packages/source/p/${name}/${name}-${version}.tar.gz";
rev = "refs/tags/${version}"; sha256 = "06yblnif9v05xwsbs089n0bj60ndb4lzkv1i15fprqnf6sgjmig7";
sha256 = "d38ce95e4af00391e58246a8d7fe42bdb51d63054b09809600b2faef2a803472";
}; };
buildInputs = with self; [ python ];
installPhase = ''
${python}/bin/${python.executable} setup.py install --prefix=$out
'';
meta = { meta = {
homepage = https://github.com/seb-m/pyinotify/wiki; homepage = https://github.com/seb-m/pyinotify/wiki;
description = "Monitor filesystems events on Linux platforms with inotify"; description = "Monitor filesystems events on Linux platforms with inotify";