summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/nixpkgs-pytools/default.nix
blob: cb8175546e8a44c327e16bcad3369b3186195d10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, python3
}:
with python3.pkgs;
buildPythonPackage rec {
  pname = "nixpkgs-pytools";
  version = "1.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "11skcbi1lf9qcv9j5ikifb4pakhbbygqpcmv3390j7gxsa85cn19";
  };

  propagatedBuildInputs = [
    jinja2
    setuptools
    rope
  ];
  checkInputs = [
    pytest
  ];

  meta = with lib; {
    description = "Tools for removing the tedious nature of creating nixpkgs derivations";
    homepage = https://github.com/nix-community/nixpkgs-pytools/;
    license = licenses.mit;
    # maintainers = [ maintainers. ];
  };
}