about summary refs log tree commit diff
path: root/pkgs/development/python-modules/inotify-simple
diff options
context:
space:
mode:
authorErik Arvstedt <erik.arvstedt@gmail.com>2019-01-27 15:26:28 +0100
committerErik Arvstedt <erik.arvstedt@gmail.com>2019-04-29 11:41:43 +0200
commite401666503082a1ba4dd73f35c3fbbbdca783a26 (patch)
treeda9e39859c671a90b1c786bca003915cd48ad1ef /pkgs/development/python-modules/inotify-simple
parent0babb25bb3b4d6209bc81e30a59b67171ccae096 (diff)
pythonPackages.inotify-simple: init at 1.1.8
Diffstat (limited to 'pkgs/development/python-modules/inotify-simple')
-rw-r--r--pkgs/development/python-modules/inotify-simple/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/inotify-simple/default.nix b/pkgs/development/python-modules/inotify-simple/default.nix
new file mode 100644
index 0000000000000..2d5e9d780945f
--- /dev/null
+++ b/pkgs/development/python-modules/inotify-simple/default.nix
@@ -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 ];
+  };
+}