python39Packages.pastedeploy: adopt into openstack team

This commit is contained in:
Sandro Jäckel
2021-10-07 20:48:17 +02:00
parent 5561c9b712
commit 1c7c0d64eb
8 changed files with 24 additions and 28 deletions
@@ -1,5 +1,5 @@
{ buildPythonPackage, fetchPypi, fetchpatch
, plaster, PasteDeploy
, plaster, pastedeploy
, pytest, pytest-cov
}:
@@ -13,7 +13,7 @@ buildPythonPackage rec {
};
patches = [
# Fix tests compatibility with PasteDeploy 2+
# Fix tests compatibility with pastedeploy 2+
# https://github.com/Pylons/plaster_pastedeploy/pull/17
(fetchpatch {
url = "https://github.com/Pylons/plaster_pastedeploy/commit/d77d81a57e917c67a20332beca8f418651172905.patch";
@@ -25,6 +25,6 @@ buildPythonPackage rec {
py.test
'';
propagatedBuildInputs = [ plaster PasteDeploy ];
propagatedBuildInputs = [ plaster pastedeploy ];
checkInputs = [ pytest pytest-cov ];
}