nixpkgs/pkgs/development/tools/pypi2nix/default.nix

26 lines
542 B
Nix
Raw Normal View History

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