python311Packages.python_fedora: update meta
This commit is contained in:
parent
9cef2ea597
commit
92bb58819b
1 changed files with 40 additions and 7 deletions
|
@ -1,22 +1,55 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, kitchen, requests, bunch, paver
|
{ lib
|
||||||
, six, munch, urllib3, beautifulsoup4, openidc-client, lockfile }:
|
, beautifulsoup4
|
||||||
|
, buildPythonPackage
|
||||||
|
, bunch
|
||||||
|
, fetchPypi
|
||||||
|
, kitchen
|
||||||
|
, lockfile
|
||||||
|
, munch
|
||||||
|
, openidc-client
|
||||||
|
, paver
|
||||||
|
, pythonOlder
|
||||||
|
, requests
|
||||||
|
, six
|
||||||
|
, urllib3
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "python-fedora";
|
pname = "python-fedora";
|
||||||
version = "1.1.1";
|
version = "1.1.1";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "56b9d841a39b4030e388e90c7b77dacd479f1ce5e2ff9b18c3954d97d5709a19";
|
hash = "sha256-VrnYQaObQDDjiOkMe3fazUefHOXi/5sYw5VNl9Vwmhk=";
|
||||||
};
|
};
|
||||||
propagatedBuildInputs = [ kitchen requests bunch paver lockfile
|
|
||||||
six munch urllib3 beautifulsoup4 openidc-client ];
|
propagatedBuildInputs = [
|
||||||
|
beautifulsoup4
|
||||||
|
bunch
|
||||||
|
kitchen
|
||||||
|
lockfile
|
||||||
|
munch
|
||||||
|
openidc-client
|
||||||
|
paver
|
||||||
|
requests
|
||||||
|
six
|
||||||
|
urllib3
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"fedora"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python Fedora Module";
|
description = "Module to interact with the infrastructure of the Fedora Project";
|
||||||
homepage = "https://github.com/fedora-infra/python-fedora";
|
homepage = "https://github.com/fedora-infra/python-fedora";
|
||||||
license = licenses.lgpl2;
|
changelog = "https://github.com/fedora-infra/python-fedora/releases/tag/1.1.1";
|
||||||
|
license = licenses.lgpl21Plus;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue