Files
nixpkgs/pkgs/development/python-modules/python-fedora/default.nix
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

62 lines
1.1 KiB
Nix

{
lib,
beautifulsoup4,
buildPythonPackage,
fetchPypi,
kitchen,
lockfile,
munch,
openidc-client,
pytestCheckHook,
pythonOlder,
requests,
setuptools,
six,
urllib3,
}:
buildPythonPackage rec {
pname = "python-fedora";
version = "1.1.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-VrnYQaObQDDjiOkMe3fazUefHOXi/5sYw5VNl9Vwmhk=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
beautifulsoup4
kitchen
lockfile
munch
openidc-client
requests
six
urllib3
];
nativeCheckInputs = [
pytestCheckHook
];
disabledTestPaths = [
# requires network access
"tests/functional/test_openidbaseclient.py"
];
pythonImportsCheck = [ "fedora" ];
meta = {
description = "Module to interact with the infrastructure of the Fedora Project";
homepage = "https://github.com/fedora-infra/python-fedora";
changelog = "https://github.com/fedora-infra/python-fedora/releases/tag/${version}";
license = lib.licenses.lgpl21Plus;
maintainers = [ ];
};
}