rpkg: 1.14 -> 1.50
This commit is contained in:
28
pkgs/development/python-modules/rpkg/default.nix
Normal file
28
pkgs/development/python-modules/rpkg/default.nix
Normal file
@@ -0,0 +1,28 @@
|
||||
{ stdenv, buildPythonPackage, isPy3k, fetchurl, six, pycurl, cccolutils
|
||||
, koji, rpmfluff }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rpkg";
|
||||
version = "1.50";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
disabled = isPy3k;
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://releases.pagure.org/rpkg/${name}.tar.gz";
|
||||
sha256 = "0j83bnm9snr3m1mabw2cvd2r7d6kcnkzyz7b9p65fhcc3c7s3rvv";
|
||||
};
|
||||
|
||||
|
||||
propagatedBuildInputs = [ pycurl koji cccolutils six rpmfluff ];
|
||||
|
||||
doCheck = false; # needs /var/lib/rpm database to run tests
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Python library for dealing with rpm packaging";
|
||||
homepage = https://pagure.io/fedpkg;
|
||||
license = licenses.gpl2plus;
|
||||
maintainers = with maintainers; [ mornfall ];
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user