2017-09-16 03:44:14 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, kitchen, requests, bunch, paver
|
|
|
|
, six, munch, urllib3, beautifulsoup4, openidc-client, lockfile }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-fedora";
|
2020-06-06 07:47:29 +01:00
|
|
|
version = "1.0.0";
|
2017-09-16 03:44:14 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:29 +01:00
|
|
|
sha256 = "efb675929ebf588c2deffa2058ff407e65d1889bca1b545a58f525135367c9e4";
|
2017-09-16 03:44:14 +01:00
|
|
|
};
|
|
|
|
propagatedBuildInputs = [ kitchen requests bunch paver lockfile
|
|
|
|
six munch urllib3 beautifulsoup4 openidc-client ];
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python Fedora Module";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/fedora-infra/python-fedora";
|
2017-09-16 03:44:14 +01:00
|
|
|
license = licenses.lgpl2;
|
2018-01-17 05:13:23 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-09-16 03:44:14 +01:00
|
|
|
};
|
|
|
|
}
|