summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyinotify
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-26 09:52:17 -0400
committerFrederik Rietdijk <fridh@fridh.nl>2018-10-27 09:07:20 +0200
commit73d1178084dbb4edea52e2e814e70f6335554bbd (patch)
treee64bbe4bf7a8de5d1cd954f268f9b11bb3db7969 /pkgs/development/python-modules/pyinotify
parentcd3b84706b988b3a39419923389c67cfc81e1386 (diff)
downloadnixpkgs-73d1178084dbb4edea52e2e814e70f6335554bbd.tar
nixpkgs-73d1178084dbb4edea52e2e814e70f6335554bbd.tar.gz
nixpkgs-73d1178084dbb4edea52e2e814e70f6335554bbd.tar.bz2
nixpkgs-73d1178084dbb4edea52e2e814e70f6335554bbd.tar.lz
nixpkgs-73d1178084dbb4edea52e2e814e70f6335554bbd.tar.xz
nixpkgs-73d1178084dbb4edea52e2e814e70f6335554bbd.tar.zst
nixpkgs-73d1178084dbb4edea52e2e814e70f6335554bbd.zip
pythonPackages.pyinotify: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/pyinotify')
-rw-r--r--pkgs/development/python-modules/pyinotify/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pyinotify/default.nix b/pkgs/development/python-modules/pyinotify/default.nix
new file mode 100644
index 00000000000..0e070d8a89d
--- /dev/null
+++ b/pkgs/development/python-modules/pyinotify/default.nix
@@ -0,0 +1,25 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "pyinotify";
+  version = "0.9.6";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1x3i9wmzw33fpkis203alygfnrkcmq9w1aydcm887jh6frfqm6cw";
+  };
+
+  # No tests distributed
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/seb-m/pyinotify/wiki;
+    description = "Monitor filesystems events on Linux platforms with inotify";
+    license = licenses.mit;
+    platforms = platforms.linux;
+  };
+
+}