bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
32 lines
623 B
Nix
32 lines
623 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 = "Python library for control flow programming";
|
|
homepage = "https://github.com/logpy/strategies";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ suhr ];
|
|
};
|
|
}
|