mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
26 lines
611 B
Nix
26 lines
611 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 ];
|
|
};
|
|
}
|