2021-01-25 09:26:54 +01:00
|
|
|
{ lib, fetchFromGitHub, pythonPackages }:
|
2014-09-14 23:12:22 +02:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
pythonPackages.buildPythonApplication {
|
2014-09-27 17:25:25 +02:00
|
|
|
name = "python2nix-20140927";
|
2021-01-20 07:20:11 +10:00
|
|
|
|
2014-09-14 23:12:22 +02:00
|
|
|
src = fetchFromGitHub {
|
2014-09-27 17:25:25 +02:00
|
|
|
owner = "proger";
|
2014-09-14 23:12:22 +02:00
|
|
|
repo = "python2nix";
|
2014-09-27 17:25:25 +02:00
|
|
|
rev = "84e3a5bbe82e5d9d694d6db8dabf73def4ac917b";
|
|
|
|
|
sha256 = "022gr0gw6azfi3iq4ggb3fhkw2jljs6n5rncn45hb5liwakigj8i";
|
2014-09-14 23:12:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ requests pip setuptools ];
|
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2021-03-03 10:50:26 +00:00
|
|
|
maintainers = [ ];
|
2014-09-14 23:12:22 +02:00
|
|
|
platforms = platforms.all;
|
|
|
|
|
};
|
|
|
|
|
}
|