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;
};
}