Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
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 = "1.0.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "efb675929ebf588c2deffa2058ff407e65d1889bca1b545a58f525135367c9e4"; 11 }; 12 propagatedBuildInputs = [ kitchen requests bunch paver lockfile 13 six munch urllib3 beautifulsoup4 openidc-client ]; 14 doCheck = false; 15 16 meta = with stdenv.lib; { 17 description = "Python Fedora Module"; 18 homepage = "https://github.com/fedora-infra/python-fedora"; 19 license = licenses.lgpl2; 20 maintainers = with maintainers; [ ]; 21 }; 22}