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

31 lines
683 B
Nix
Raw Normal View History

{ lib, python3 }:
2020-04-07 17:19:49 +00:00
with python3.pkgs;
2020-04-07 17:19:49 +00:00
buildPythonApplication rec {
pname = "pew";
version = "1.2.0";
2020-04-07 17:19:49 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "04anak82p4v9w0lgfs55s7diywxil6amq8c8bhli143ca8l2fcdq";
};
2020-04-07 17:19:49 +00:00
propagatedBuildInputs = [ virtualenv virtualenv-clone setuptools ];
2020-04-07 17:19:49 +00:00
# no tests are packaged
checkPhase = ''
$out/bin/pew > /dev/null
'';
pythonImportsCheck = [ "pew" ];
meta = with lib; {
2020-04-07 17:19:49 +00:00
homepage = "https://github.com/berdario/pew";
description = "Tools to manage multiple virtualenvs written in pure python";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ berdario ];
};
}