Merge pull request #267482 from natsukium/python-fedora

python311Packages.python-fedora: rename from python_fedora
This commit is contained in:
OTABI Tomoya 2023-11-20 17:26:25 +09:00 committed by GitHub
commit ae03901e1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 8 deletions

View file

@ -1,15 +1,16 @@
{ lib { lib
, beautifulsoup4 , beautifulsoup4
, buildPythonPackage , buildPythonPackage
, bunch
, fetchPypi , fetchPypi
, kitchen , kitchen
, lockfile , lockfile
, munch , munch
, nose
, openidc-client , openidc-client
, paver , pytestCheckHook
, pythonOlder , pythonOlder
, requests , requests
, setuptools
, six , six
, urllib3 , urllib3
}: }:
@ -17,7 +18,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-fedora"; pname = "python-fedora";
version = "1.1.1"; version = "1.1.1";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -26,20 +27,30 @@ buildPythonPackage rec {
hash = "sha256-VrnYQaObQDDjiOkMe3fazUefHOXi/5sYw5VNl9Vwmhk="; hash = "sha256-VrnYQaObQDDjiOkMe3fazUefHOXi/5sYw5VNl9Vwmhk=";
}; };
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [ propagatedBuildInputs = [
beautifulsoup4 beautifulsoup4
bunch
kitchen kitchen
lockfile lockfile
munch munch
openidc-client openidc-client
paver
requests requests
six six
urllib3 urllib3
]; ];
doCheck = false; nativeCheckInputs = [
pytestCheckHook
nose
];
disabledTestPaths = [
# requires network access
"tests/functional/test_openidbaseclient.py"
];
pythonImportsCheck = [ pythonImportsCheck = [
"fedora" "fedora"
@ -48,7 +59,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Module to interact with the infrastructure of the Fedora Project"; 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";
changelog = "https://github.com/fedora-infra/python-fedora/releases/tag/1.1.1"; changelog = "https://github.com/fedora-infra/python-fedora/releases/tag/${version}";
license = licenses.lgpl21Plus; license = licenses.lgpl21Plus;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
}; };

View file

@ -350,6 +350,7 @@ mapAliases ({
python-forecastio = throw "python-forecastio has been removed, as the Dark Sky service was shut down."; # added 2023-04-05 python-forecastio = throw "python-forecastio has been removed, as the Dark Sky service was shut down."; # added 2023-04-05
python-igraph = igraph; # added 2021-11-11 python-igraph = igraph; # added 2021-11-11
python_docs_theme = python-docs-theme; # added 2023-11-04 python_docs_theme = python-docs-theme; # added 2023-11-04
python_fedora = python-fedora; # added 2023-11-15
python_keyczar = throw "python_keyczar has been removed because it's been archived upstream and deprecated"; # added 2023-05-16 python_keyczar = throw "python_keyczar has been removed because it's been archived upstream and deprecated"; # added 2023-05-16
python-lz4 = lz4; # added 2018-06-01 python-lz4 = lz4; # added 2018-06-01
python_magic = python-magic; # added 2022-05-07 python_magic = python-magic; # added 2022-05-07

View file

@ -11451,7 +11451,7 @@ self: super: with self; {
python-ev3dev2 = callPackage ../development/python-modules/python-ev3dev2 { }; python-ev3dev2 = callPackage ../development/python-modules/python-ev3dev2 { };
python_fedora = callPackage ../development/python-modules/python_fedora { }; python-fedora = callPackage ../development/python-modules/python-fedora { };
python-fontconfig = callPackage ../development/python-modules/python-fontconfig { }; python-fontconfig = callPackage ../development/python-modules/python-fontconfig { };