python39Packages.parver: drop version constraint on arpeggio, add SuperSandro200 as maintainer

This commit is contained in:
Sandro Jäckel 2022-03-23 05:23:45 +01:00
parent 01ed018d6d
commit fab200cb0a
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -3,7 +3,7 @@
, fetchPypi , fetchPypi
, six , six
, attrs , attrs
, pytest , pytestCheckHook
, hypothesis , hypothesis
, pretend , pretend
, arpeggio , arpeggio
@ -18,11 +18,27 @@ buildPythonPackage rec {
sha256 = "c902e0653bcce927cc156a7fd9b3a51924cbce3bf3d0bfd49fc282bfd0c5dfd3"; sha256 = "c902e0653bcce927cc156a7fd9b3a51924cbce3bf3d0bfd49fc282bfd0c5dfd3";
}; };
propagatedBuildInputs = [ six attrs arpeggio ]; postPatch = ''
checkInputs = [ pytest hypothesis pretend ]; substituteInPlace setup.py \
--replace "arpeggio ~= 1.7" "arpeggio"
'';
meta = { propagatedBuildInputs = [
description = "parver allows parsing and manipulation of PEP 440 version numbers."; six
license = lib.licenses.mit; attrs
arpeggio
];
checkInputs = [
pytestCheckHook
hypothesis
pretend
];
meta = with lib; {
description = "Allows parsing and manipulation of PEP 440 version numbers";
homepage = "https://github.com/RazerM/parver";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
}; };
} }