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