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

25 lines
495 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-10-26 14:38:16 -07:00
version = "2.0.0";
src = pkgs.fetchPypi {
inherit pname version;
sha256 = "0w9z07kdnfs96230jag8xgz4wx337bb3q3bvqxn3r31x8fsmz6rr";
};
checkInputs = with pkgs; [ pytest ];
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
}