nixpkgs/pkgs/tools/package-management/python2nix/default.nix
zowoq 31f5dd3f36 treewide: editorconfig fixes
- remove trailing whitespace
- use spaces for indentation
2021-01-20 09:11:11 +10:00

20 lines
508 B
Nix

{ lib, stdenv, 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;
};
}