pythonPackages.inotify-simple: init at 1.1.8

This commit is contained in:
Erik Arvstedt 2019-01-27 15:26:28 +01:00
parent 0babb25bb3
commit e401666503
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "inotify-simple";
version = "1.1.8";
src = fetchPypi {
pname = "inotify_simple";
inherit version;
sha256 = "1pfqvnynwh318cakldhg7535kbs02asjsgv6s0ki12i7fgfi0b7w";
};
# The package has no tests
doCheck = false;
meta = with lib; {
description = "A simple Python wrapper around inotify";
homepage = https://github.com/chrisjbillington/inotify_simple;
license = licenses.bsd2;
maintainers = with maintainers; [ earvstedt ];
};
}

View File

@ -472,6 +472,8 @@ in {
imutils = callPackage ../development/python-modules/imutils { };
inotify-simple = callPackage ../development/python-modules/inotify-simple { };
intake = callPackage ../development/python-modules/intake { };
intelhex = callPackage ../development/python-modules/intelhex { };