26 lines
542 B
Nix
Raw Normal View History

2019-10-26 23:38:16 +02:00
{ python3
2016-05-07 05:04:25 +02:00
}:
2019-10-26 23:38:16 +02:00
with python3;
2016-05-07 05:04:25 +02:00
2019-10-26 23:38:16 +02:00
pkgs.buildPythonApplication rec {
2019-08-13 21:52:01 +00:00
pname = "pypi2nix";
2019-11-10 21:22:47 +01:00
version = "2.0.1";
2019-10-26 23:38:16 +02:00
src = pkgs.fetchPypi {
inherit pname version;
2019-11-10 21:22:47 +01:00
sha256 = "138fwd3cznkfa6w3a5s4fbflh88q26hk4grlmq73dcbk06ykf84k";
2019-10-26 23:38:16 +02:00
};
checkInputs = with pkgs; [ pytest ];
2019-11-10 21:22:47 +01:00
buildInputs = with pkgs; [ setuptools_scm ];
2019-10-26 23:38:16 +02:00
propagatedBuildInputs = with pkgs; [
attrs
2016-07-25 04:25:51 +02:00
click
2019-10-26 23:38:16 +02:00
jinja2
nix-prefetch-github
packaging
parsley
setuptools
toml
2016-09-25 04:42:23 +02:00
];
2019-10-26 23:38:16 +02:00
checkPhase = "${python3.interpreter} -m pytest unittests -m 'not nix'";
2016-05-07 05:04:25 +02:00
}