mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
31 lines
656 B
Nix
31 lines
656 B
Nix
{ stdenv, fetchurl, buildPythonPackage, pycurl, six, rpm, dateutil }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "koji";
|
|
version = "1.13.0";
|
|
format = "other";
|
|
|
|
src = fetchurl {
|
|
url = "https://releases.pagure.org/koji/${pname}-${version}.tar.bz2";
|
|
sha256 = "18b18rcbdqqw33g7h20hf5bpbci2ixdi05yda1fvpv30c1kkzd8w";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pycurl six rpm dateutil ];
|
|
|
|
# Judging from SyntaxError
|
|
#disabled = isPy3k;
|
|
|
|
makeFlags = "DESTDIR=$(out)";
|
|
|
|
postInstall = ''
|
|
mv $out/usr/* $out/
|
|
cp -R $out/nix/store/*/* $out/
|
|
rm -rf $out/nix
|
|
'';
|
|
|
|
meta = {
|
|
maintainers = [ ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|