summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/fuse-python
diff options
context:
space:
mode:
authorAssassinkin <iuns@outlook.fr>2018-09-14 18:47:18 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-09-18 19:05:34 +0200
commitde9fb389f402db29c7595997a331acc546795c8e (patch)
tree9a20ead8688e77ef0539261e810ad8a7ac3303bf /pkgs/development/python-modules/fuse-python
parent31554915a4b98143dba9c306d3c7cb5f817843aa (diff)
pythonPackages.fuse: 0.2.1 -> 0.3.1 | refactor | python3 support
Diffstat (limited to 'pkgs/development/python-modules/fuse-python')
-rw-r--r--pkgs/development/python-modules/fuse-python/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/fuse-python/default.nix b/pkgs/development/python-modules/fuse-python/default.nix
new file mode 100644
index 000000000000..cf965dd244fc
--- /dev/null
+++ b/pkgs/development/python-modules/fuse-python/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, buildPythonPackage, fetchPypi, pkgconfig, fuse }:
+
+buildPythonPackage rec {
+ pname = "fuse-python";
+ version = "0.3.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0p1f01gah1y8skirrwsbxapz3g6drqihnkjh27b45ifg43h45g7x";
+ };
+
+ buildInputs = [ fuse ];
+ nativeBuildInputs = [ pkgconfig ];
+
+ # no tests in the Pypi archive
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Python bindings for FUSE";
+ homepage = https://github.com/libfuse/python-fuse;
+ license = licenses.lgpl21;
+ maintainers = with maintainers; [ psyanticy ];
+ };
+}
+