2017-09-15 19:44:14 -07:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, kitchen, requests, bunch, paver
|
|
|
|
, six, munch, urllib3, beautifulsoup4, openidc-client, lockfile }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-fedora";
|
2018-07-22 03:18:52 -07:00
|
|
|
version = "0.10.0";
|
2017-09-15 19:44:14 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-22 03:18:52 -07:00
|
|
|
sha256 = "5516b8c066bb2eb5d604ae8e84c3d31e27753795c5d84f6a792979363756405c";
|
2017-09-15 19:44:14 -07:00
|
|
|
};
|
|
|
|
propagatedBuildInputs = [ kitchen requests bunch paver lockfile
|
|
|
|
six munch urllib3 beautifulsoup4 openidc-client ];
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python Fedora Module";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/fedora-infra/python-fedora";
|
2017-09-15 19:44:14 -07:00
|
|
|
license = licenses.lgpl2;
|
2018-01-16 21:13:23 -08:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-09-15 19:44:14 -07:00
|
|
|
};
|
|
|
|
}
|