python311Packages.python_fedora: update meta

This commit is contained in:
Fabian Affolter 2023-01-21 17:50:04 +01:00
parent 9cef2ea597
commit 92bb58819b

View file

@ -1,22 +1,55 @@
{ lib, buildPythonPackage, fetchPypi, kitchen, requests, bunch, paver
, six, munch, urllib3, beautifulsoup4, openidc-client, lockfile }:
{ lib
, beautifulsoup4
, buildPythonPackage
, bunch
, fetchPypi
, kitchen
, lockfile
, munch
, openidc-client
, paver
, pythonOlder
, requests
, six
, urllib3
}:
buildPythonPackage rec {
pname = "python-fedora";
version = "1.1.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
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;
pythonImportsCheck = [
"fedora"
];
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";
license = licenses.lgpl2;
changelog = "https://github.com/fedora-infra/python-fedora/releases/tag/1.1.1";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ ];
};
}