3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/fountains/default.nix
2021-12-03 09:09:19 +01:00

37 lines
746 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, bitlist
}:
buildPythonPackage rec {
pname = "fountains";
version = "1.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "fbf4e2cb11d60d3bafca5bb7c01c254d08a5541ed7ddfe00ef975eb173fb75a4";
};
propagatedBuildInputs = [
bitlist
];
postPatch = ''
substituteInPlace setup.py \
--replace "bitlist~=0.5.1" "bitlist>=0.5.1"
'';
# Project has no test
doCheck = false;
pythonImportsCheck = [ "fountains" ];
meta = with lib; {
description = "Python library for generating and embedding data for unit testing";
homepage = "https://github.com/reity/fountains";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}