fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
32 lines
625 B
Nix
32 lines
625 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
multipledispatch,
|
|
toolz,
|
|
pytest,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "strategies";
|
|
version = "0.2.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "02i4ydrs9k61p8iv2vl2akks8p9gc88rw8031wlwb1zqsyjmb328";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
multipledispatch
|
|
toolz
|
|
];
|
|
nativeCheckInputs = [ pytest ];
|
|
|
|
meta = {
|
|
description = "A Python library for control flow programming";
|
|
homepage = "https://github.com/logpy/strategies";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ suhr ];
|
|
};
|
|
}
|