My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/strategies/default.nix

24 lines
580 B

{ 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 ];
};
}