forked from mirrors/nixpkgs
pythonPackages.inotify-simple: init at 1.1.8
This commit is contained in:
parent
0babb25bb3
commit
e401666503
22
pkgs/development/python-modules/inotify-simple/default.nix
Normal file
22
pkgs/development/python-modules/inotify-simple/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -472,6 +472,8 @@ in {
|
||||||
|
|
||||||
imutils = callPackage ../development/python-modules/imutils { };
|
imutils = callPackage ../development/python-modules/imutils { };
|
||||||
|
|
||||||
|
inotify-simple = callPackage ../development/python-modules/inotify-simple { };
|
||||||
|
|
||||||
intake = callPackage ../development/python-modules/intake { };
|
intake = callPackage ../development/python-modules/intake { };
|
||||||
|
|
||||||
intelhex = callPackage ../development/python-modules/intelhex { };
|
intelhex = callPackage ../development/python-modules/intelhex { };
|
||||||
|
|
Loading…
Reference in a new issue