Skip to content

Commit

Permalink
pythonPackages.koji: 1.13.0 -> 1.14.3 (security)
Browse files Browse the repository at this point in the history
Addressing CVE-2019-17109

Also added missing description, homepage & license. Re-disabled for py3k
as the kojira executable doesn't seem to be happy with it.
  • Loading branch information
risicle committed Oct 29, 2019
1 parent d674b9e commit 605a7b3
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions pkgs/development/python-modules/koji/default.nix
@@ -1,19 +1,19 @@
{ stdenv, fetchurl, buildPythonPackage, pycurl, six, rpm, dateutil }:
{ stdenv, fetchurl, buildPythonPackage, isPy3k, pycurl, six, rpm, dateutil }:

buildPythonPackage rec {
pname = "koji";
version = "1.13.0";
version = "1.14.3";
format = "other";

src = fetchurl {
url = "https://releases.pagure.org/koji/${pname}-${version}.tar.bz2";
sha256 = "18b18rcbdqqw33g7h20hf5bpbci2ixdi05yda1fvpv30c1kkzd8w";
sha256 = "0a3kn3qvspvx15imgzzzjsbvw6bqmbk29apbliqwifa9cj7pvb40";
};

propagatedBuildInputs = [ pycurl six rpm dateutil ];

# Judging from SyntaxError
#disabled = isPy3k;
disabled = isPy3k;

makeFlags = "DESTDIR=$(out)";

Expand All @@ -24,7 +24,9 @@ buildPythonPackage rec {
'';

meta = {
maintainers = [ ];
description = "An RPM-based build system";
homepage = https://pagure.io/koji;
license = stdenv.lib.licenses.lgpl21;
platforms = stdenv.lib.platforms.unix;
};
}

0 comments on commit 605a7b3

Please sign in to comment.