pythonPackages.python-snappy: init at 0.5.3

This commit is contained in:
Chris Ostrouchov 2019-02-24 10:22:51 -05:00
parent 5b3d8888f7
commit 19df1a4f29
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,39 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPyPy
, python
, snappy
, cffi
, nose
}:
buildPythonPackage rec {
pname = "python-snappy";
version = "0.5.3";
src = fetchPypi {
inherit pname version;
sha256 = "8a7f803f06083d4106d55387d2daa32c12b5e376c3616b0e2da8b8a87a27d74a";
};
buildInputs = [ snappy ];
propagatedBuildInputs = lib.optional isPyPy cffi;
checkInputs = [ nose ];
checkPhase = ''
rm -r snappy # prevent local snappy from being picked up
nosetests test_snappy.py
'' + lib.optionalString isPyPy ''
nosetests test_snappy_cffi.py
'';
meta = with lib; {
description = "Python library for the snappy compression library from Google";
homepage = http://github.com/andrix/python-snappy;
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}

View File

@ -754,6 +754,10 @@ in {
python-sql = callPackage ../development/python-modules/python-sql { };
python-snappy = callPackage ../development/python-modules/python-snappy {
inherit (pkgs) snappy;
};
python-stdnum = callPackage ../development/python-modules/python-stdnum { };
python-socketio = callPackage ../development/python-modules/python-socketio { };