pythonPackages.plumbum: 1.5.0 -> 1.6.3

This commit is contained in:
Frederik Rietdijk
2017-05-01 09:56:14 +02:00
parent 0af84da84b
commit 312631a37e
2 changed files with 22 additions and 10 deletions

View File

@@ -0,0 +1,21 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "plumbum";
version = "1.6.3";
name = "${pname}-${version}";
checkInputs = [ pytest ];
# No tests in archive
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "0249e708459f1b05627a7ca8787622c234e4db495a532acbbd1f1f17f28c7320";
};
}