pythonPackages.lz4: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-25 20:26:37 -04:00 committed by Frederik Rietdijk
parent 1cca105769
commit 62ca7b6dd4
2 changed files with 25 additions and 16 deletions

View File

@ -0,0 +1,24 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
}:
buildPythonPackage rec {
pname = "lz4";
version = "0.8.2";
src = fetchPypi {
inherit pname version;
sha256 = "1irad4sq4hdr30fr53smvv3zzk4rddcf9b4jx19w8s9xsxhr1x3b";
};
buildInputs = [ nose ];
meta = with stdenv.lib; {
description = "Compression library";
homepage = https://github.com/python-lz4/python-lz4;
license = licenses.bsd3;
};
}

View File

@ -3047,22 +3047,7 @@ in {
ldappool = callPackage ../development/python-modules/ldappool { };
lz4 = buildPythonPackage rec {
name = "lz4-0.8.2";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/b5/f0/e1de2bb7feb54011f3c4dcf35b7cca3536e19526764db051b50ea26b58e7/lz4-0.8.2.tar.gz";
sha256 = "1irad4sq4hdr30fr53smvv3zzk4rddcf9b4jx19w8s9xsxhr1x3b";
};
buildInputs= with self; [ nose ];
meta = with stdenv.lib; {
description = "Compression library";
homepage = https://github.com/python-lz4/python-lz4;
license = licenses.bsd3;
};
};
lz4 = callPackage ../development/python-modules/lz4 { };
retrying = buildPythonPackage rec {
name = "retrying-${version}";