Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / rpkg / default.nix
blob5f1cfc622c9fd2097e0bd92b15e674a3bc54ca3b
1 { lib, buildPythonPackage, isPy3k, fetchurl, six, pycurl, cccolutils
2 , koji, rpmfluff }:
4 buildPythonPackage rec {
5   pname = "rpkg";
6   version = "1.50";
8   disabled = isPy3k;
10   src = fetchurl {
11     url = "https://releases.pagure.org/rpkg/${pname}-${version}.tar.gz";
12     sha256 = "0j83bnm9snr3m1mabw2cvd2r7d6kcnkzyz7b9p65fhcc3c7s3rvv";
13   };
16   propagatedBuildInputs = [ pycurl koji cccolutils six rpmfluff ];
18   doCheck = false; # needs /var/lib/rpm database to run tests
20   meta = with lib; {
21     description = "Python library for dealing with rpm packaging";
22     homepage = "https://pagure.io/fedpkg";
23     license = licenses.gpl2Plus;
24     maintainers = with maintainers; [ ];
25   };