nixpkgs/pkgs/tools/package-management/python2nix/default.nix

20 lines
515 B
Nix
Raw Normal View History

2014-09-14 21:12:22 +00:00
{ stdenv, fetchFromGitHub, pythonPackages }:
pythonPackages.buildPythonApplication rec {
name = "python2nix-20140927";
2014-09-14 21:12:22 +00:00
src = fetchFromGitHub {
owner = "proger";
2014-09-14 21:12:22 +00:00
repo = "python2nix";
rev = "84e3a5bbe82e5d9d694d6db8dabf73def4ac917b";
sha256 = "022gr0gw6azfi3iq4ggb3fhkw2jljs6n5rncn45hb5liwakigj8i";
2014-09-14 21:12:22 +00:00
};
propagatedBuildInputs = with pythonPackages; [ requests pip setuptools ];
meta = with stdenv.lib; {
maintainers = [ maintainers.domenkozar ];
2014-09-14 21:12:22 +00:00
platforms = platforms.all;
};
}