1{ stdenv, buildPythonPackage, fetchPypi, kitchen, requests, bunch, paver
2, six, munch, urllib3, beautifulsoup4, openidc-client, lockfile }:
3
4buildPythonPackage rec {
5 pname = "python-fedora";
6 version = "0.9.0";
7 name = pname + "-" + version;
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "0sf468scw52sw9pzxrnmqs54rix9c4fp1mi2r5k5n7mgjrmf6j0x";
12 };
13 propagatedBuildInputs = [ kitchen requests bunch paver lockfile
14 six munch urllib3 beautifulsoup4 openidc-client ];
15 doCheck = false;
16
17 meta = with stdenv.lib; {
18 description = "Python Fedora Module";
19 homepage = https://github.com/fedora-infra/python-fedora;
20 license = licenses.lgpl2;
21 maintainers = with maintainers; [ ];
22 };
23}