python3Packages.fountains: 1.1.1 -> 1.2.0

This commit is contained in:
Fabian Affolter 2021-12-28 10:13:43 +01:00 committed by Jonathan Ringer
parent 13879f89e0
commit ebb09c61e9

View file

@ -6,26 +6,24 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "fountains"; pname = "fountains";
version = "1.1.1"; version = "1.2.0";
format = "setuptools";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "fbf4e2cb11d60d3bafca5bb7c01c254d08a5541ed7ddfe00ef975eb173fb75a4"; sha256 = "sha256-bea8EXw3b0CibhEREdY4FZouiiXP4y+UbbDXed7Ltwo=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
bitlist bitlist
]; ];
postPatch = '' # Module has no test
substituteInPlace setup.py \
--replace "bitlist~=0.5.1" "bitlist>=0.5.1"
'';
# Project has no test
doCheck = false; doCheck = false;
pythonImportsCheck = [ "fountains" ]; pythonImportsCheck = [
"fountains"
];
meta = with lib; { meta = with lib; {
description = "Python library for generating and embedding data for unit testing"; description = "Python library for generating and embedding data for unit testing";