aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/python-lz4
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-05 12:43:18 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-05 12:44:52 +0000
commitcf85056ba64caf3267d43255ef4a1243e9c8ee3b (patch)
tree3051519e9c8275b870aac43f80af875715c9d124 /nixpkgs/pkgs/development/python-modules/python-lz4
parent1148b1d122bc03e9a3665856c9b7bb96bd4e3994 (diff)
parent2436c27541b2f52deea3a4c1691216a02152e729 (diff)
Add 'nixpkgs/' from commit '2436c27541b2f52deea3a4c1691216a02152e729'
git-subtree-dir: nixpkgs git-subtree-mainline: 1148b1d122bc03e9a3665856c9b7bb96bd4e3994 git-subtree-split: 2436c27541b2f52deea3a4c1691216a02152e729
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/python-lz4')
-rw-r--r--nixpkgs/pkgs/development/python-modules/python-lz4/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/python-lz4/default.nix b/nixpkgs/pkgs/development/python-modules/python-lz4/default.nix
new file mode 100644
index 00000000000..e967ba9934d
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/python-lz4/default.nix
@@ -0,0 +1,41 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, future
+, isPy3k
+, pkgconfig
+, psutil
+, pytest
+, pytestcov
+, pytestrunner
+, setuptools_scm
+}:
+
+buildPythonPackage rec {
+ pname = "python-lz4";
+ version = "2.1.10";
+
+ # get full repository inorder to run tests
+ src = fetchFromGitHub {
+ owner = pname;
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "02cadqfdmw4vc94px18dh4hcybpsa2lr6jz6j5phwc0jjaavh3wr";
+ };
+
+ buildInputs = [ setuptools_scm pkgconfig pytestrunner ];
+ checkInputs = [ pytest pytestcov 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 ];
+ };
+}