depot/third_party/nixpkgs/pkgs/development/python-modules/plumbum/default.nix
Default email a6d62be0d1 Project import generated by Copybara.
GitOrigin-RevId: ac169ec6371f0d835542db654a65e0f2feb07838
2021-12-26 18:43:05 +01:00

19 lines
322 B
Nix

{ buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "plumbum";
version = "1.7.1";
checkInputs = [ pytest ];
# No tests in archive
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "3c0ac8c4ee57b2adddc82909d3c738a62ef5f77faf24ec7cb6f0a117e1679740";
};
}