summary refs log tree commit diff
path: root/pkgs/development/python-modules/rpmfluff/default.nix
blob: c6cd2521292a9c9942dd3cfbd85bb32613a9c08c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchurl }:

buildPythonPackage rec {
  pname = "rpmfluff";
  version = "0.5.3";
  name  = "${pname}-${version}";

  src = fetchurl {
    url = "https://releases.pagure.org/${pname}/${name}.tar.xz";
    sha256 = "1i45f012ngpxs83m3dpmaj3hs8z7r9sbf05vnvzgs3hpgsbhxa7r";
  };

  meta = with stdenv.lib; {
    description = "lightweight way of building RPMs, and sabotaging them";
    homepage = https://pagure.io/rpmfluff;
    license = licenses.gpl2;
    maintainers = with maintainers; [ disassembler ];
  };

}