2019-02-24 15:22:51 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, isPyPy
|
|
|
|
, snappy
|
|
|
|
, cffi
|
|
|
|
, nose
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-snappy";
|
2019-04-16 18:15:40 +01:00
|
|
|
version = "0.5.4";
|
2019-02-24 15:22:51 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-16 18:15:40 +01:00
|
|
|
sha256 = "d9c26532cfa510f45e8d135cde140e8a5603d3fb254cfec273ebc0ecf9f668e2";
|
2019-02-24 15:22:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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";
|
2019-04-15 00:25:45 +01:00
|
|
|
homepage = https://github.com/andrix/python-snappy;
|
2019-02-24 15:22:51 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.costrouc ];
|
|
|
|
};
|
|
|
|
}
|