summary refs log tree commit diff
path: root/pkgs/tools/package-management/python2nix/default.nix
blob: b6ffe9abc0243bb53453376381614eeb36ec5a16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, fetchFromGitHub, pythonPackages }:

pythonPackages.buildPythonApplication {
  name = "python2nix-20140927";

  src = fetchFromGitHub {
    owner = "proger";
    repo = "python2nix";
    rev = "84e3a5bbe82e5d9d694d6db8dabf73def4ac917b";
    sha256 = "022gr0gw6azfi3iq4ggb3fhkw2jljs6n5rncn45hb5liwakigj8i";
  };

  propagatedBuildInputs = with pythonPackages; [ requests pip setuptools ];

  meta = with lib; {
    maintainers = [ maintainers.domenkozar ];
    platforms = platforms.all;
  };
}