Merge branch 'master' into staging-next

Conflicts:
	pkgs/development/python-modules/fe25519/default.nix
	pkgs/development/python-modules/fountains/default.nix
	pkgs/development/python-modules/humanize/default.nix
This commit is contained in:
Dmitry Kalinkin
2021-12-28 18:49:09 -05:00
45 changed files with 475 additions and 182 deletions

View File

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