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

19 lines
321 B
Nix
Raw Normal View History

{ buildPythonPackage
2017-05-01 09:56:14 +02:00
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "plumbum";
2018-08-13 09:29:26 +02:00
version = "1.6.7";
2017-05-01 09:56:14 +02:00
checkInputs = [ pytest ];
# No tests in archive
doCheck = false;
src = fetchPypi {
inherit pname version;
2018-08-13 09:29:26 +02:00
sha256 = "d143f079bfb60b11e9bec09a49695ce2e55ce5ca0246877bdb0818ab7c7fc312";
2017-05-01 09:56:14 +02:00
};
}