1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-20 21:17:46 +00:00
nixpkgs/pkgs/development/python-modules/plumbum/default.nix

21 lines
359 B
Nix
Raw Normal View History

2017-05-01 08:56:14 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "plumbum";
2017-12-30 11:25:34 +00:00
version = "1.6.5";
2017-05-01 08:56:14 +01:00
name = "${pname}-${version}";
checkInputs = [ pytest ];
# No tests in archive
doCheck = false;
src = fetchPypi {
inherit pname version;
2017-12-30 11:25:34 +00:00
sha256 = "d8abb059bb62beb6c99db08d3598167abaeeab53eaf218f91e74bae471a24bee";
2017-05-01 08:56:14 +01:00
};
}