mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
25 lines
580 B
Nix
25 lines
580 B
Nix
|
{ lib, buildPythonPackage, fetchPypi
|
||
|
, multipledispatch, toolz
|
||
|
, pytest
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "strategies";
|
||
|
version = "0.2.3";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "02i4ydrs9k61p8iv2vl2akks8p9gc88rw8031wlwb1zqsyjmb328";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ multipledispatch toolz ];
|
||
|
checkInputs = [ 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 ];
|
||
|
};
|
||
|
}
|