nixpkgs/pkgs/development/python-modules/srsly/default.nix

48 lines
844 B
Nix
Raw Normal View History

{ lib
2019-05-11 14:29:14 +01:00
, buildPythonPackage
, fetchPypi
, pythonOlder
, cython
, catalogue
2019-05-11 14:29:14 +01:00
, mock
, numpy
, pathlib
, pytest
, pytz
}:
buildPythonPackage rec {
pname = "srsly";
version = "2.4.0";
2019-05-11 14:29:14 +01:00
disabled = pythonOlder "3.6";
2019-05-11 14:29:14 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "e29730be53015970e4a59050e8e9f9be44d762108a617df56c9dfc981b515ab7";
2019-05-11 14:29:14 +01:00
};
nativeBuildInputs = [ cython ];
propagatedBuildInputs = [ catalogue ];
2019-05-11 14:29:14 +01:00
checkInputs = [
mock
numpy
pytest
pytz
];
# TypeError: cannot serialize '_io.BufferedRandom' object
# Possibly because of sandbox restrictions.
doCheck = false;
pythonImportsCheck = [ "srsly" ];
meta = with lib; {
2019-05-11 14:29:14 +01:00
description = "Modern high-performance serialization utilities for Python";
homepage = "https://github.com/explosion/srsly";
2019-05-11 14:29:14 +01:00
license = licenses.mit;
};
}