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

42 lines
799 B
Nix
Raw Normal View History

2019-05-11 15:29:14 +02:00
{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, mock
, numpy
, pathlib
, pytest
, pytz
}:
buildPythonPackage rec {
pname = "srsly";
2020-03-13 15:05:41 +01:00
version = "1.0.2";
2019-05-11 15:29:14 +02:00
src = fetchPypi {
inherit pname version;
2020-03-13 15:05:41 +01:00
sha256 = "1n0f9kbbz5akpbiqqz4j3p7zqai3zasw8cqai9zj1pv7sn0qn9ar";
2019-05-11 15:29:14 +02:00
};
propagatedBuildInputs = lib.optional (pythonOlder "3.4") pathlib;
checkInputs = [
mock
numpy
pytest
pytz
];
# TypeError: cannot serialize '_io.BufferedRandom' object
# Possibly because of sandbox restrictions.
doCheck = false;
meta = with stdenv.lib; {
description = "Modern high-performance serialization utilities for Python";
homepage = "https://github.com/explosion/srsly";
2019-05-11 15:29:14 +02:00
license = licenses.mit;
maintainers = with maintainers; [ danieldk ];
};
}