nixpkgs/pkgs/development/python-modules/python_fedora/default.nix

23 lines
701 B
Nix
Raw Normal View History

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";
homepage = "https://github.com/fedora-infra/python-fedora";
2017-09-16 03:44:14 +01:00
license = licenses.lgpl2;
maintainers = with maintainers; [ ];
2017-09-16 03:44:14 +01:00
};
}