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,31 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest-runner
, pytest
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pastedeploy";
version = "2.1.1";
pname = "PasteDeploy";
src = fetchPypi {
inherit pname version;
sha256 = "6dead6ab9823a85d585ef27f878bc647f787edb9ca8da0716aa9f1261b464817";
src = fetchFromGitHub {
owner = "Pylons";
repo = pname;
rev = version;
sha256 = "sha256-9/8aM/G/EdapCZJlx0ZPzNbmw2uYjA1zGbNWJAWoeCU=";
};
buildInputs = [ pytest-runner ];
checkInputs = [ pytest ];
# no tests in PyPI tarball
# should be included with versions > 2.0.1
doCheck = false;
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Load, configure, and compose WSGI applications and servers";
homepage = "http://pythonpaste.org/deploy/";
homepage = "https://github.com/Pylons/pastedeploy";
license = licenses.mit;
maintainers = teams.openstack.members;
};
}