strategies: init at 0.2.3
This commit is contained in:
parent
64f837491c
commit
8686d27086
2 changed files with 26 additions and 0 deletions
24
pkgs/development/python-modules/strategies/default.nix
Normal file
24
pkgs/development/python-modules/strategies/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -4419,6 +4419,8 @@ in {
|
|||
|
||||
statsmodels = callPackage ../development/python-modules/statsmodels { };
|
||||
|
||||
strategies = callPackage ../development/python-modules/strategies { };
|
||||
|
||||
stravalib = callPackage ../development/python-modules/stravalib { };
|
||||
|
||||
streamz = callPackage ../development/python-modules/streamz { };
|
||||
|
|
Loading…
Reference in a new issue