python-packages: updates pyinotify 0.9.3 to 0.9.5

This commit is contained in:
desiderius 2015-06-05 09:20:46 +02:00
parent 6d42d6928e
commit daf0e6500d

View file

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