nixpkgs/pkgs/development/python-modules/plumbum/default.nix

20 lines
322 B
Nix
Raw Normal View History

{ buildPythonPackage
2017-05-01 07:56:14 +00:00
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "plumbum";
version = "1.7.0";
2017-05-01 07:56:14 +00:00
checkInputs = [ pytest ];
# No tests in archive
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "317744342c755319907c773cc87c3a30adaa3a41b0d34c0ce02d9d1904922dce";
2017-05-01 07:56:14 +00:00
};
2020-08-25 02:07:09 +00:00
}