summary refs log tree commit diff
path: root/pkgs/development/python-modules/lz4/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/lz4/default.nix')
-rw-r--r--pkgs/development/python-modules/lz4/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/lz4/default.nix b/pkgs/development/python-modules/lz4/default.nix
new file mode 100644
index 00000000000..180264f102d
--- /dev/null
+++ b/pkgs/development/python-modules/lz4/default.nix
@@ -0,0 +1,41 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, future
+, isPy3k
+, pkgconfig
+, psutil
+, pytest
+, pytest-cov
+, pytest-runner
+, setuptools-scm
+}:
+
+buildPythonPackage rec {
+  pname = "python-lz4";
+  version = "3.1.3";
+
+  # get full repository inorder to run tests
+  src = fetchFromGitHub {
+    owner = pname;
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "009c4rbyj4cjb8fznccfpr5wrzdmi56wq990yjh22n0z2qqylmkf";
+  };
+
+  nativeBuildInputs = [ setuptools-scm pkgconfig pytest-runner ];
+  checkInputs = [ pytest pytest-cov psutil ];
+  propagatedBuildInputs = lib.optionals (!isPy3k) [ future ];
+
+  # give a hint to setuptools-scm on package version
+  preBuild = ''
+    export SETUPTOOLS_SCM_PRETEND_VERSION="v${version}"
+  '';
+
+  meta = {
+     description = "LZ4 Bindings for Python";
+     homepage = "https://github.com/python-lz4/python-lz4";
+     license = lib.licenses.bsd3;
+     maintainers = with lib.maintainers; [ costrouc ];
+  };
+}