pyramid: 1.7 -> 1.9.1

This commit is contained in:
makefu
2017-09-25 13:39:07 +02:00
parent d00ba8091f
commit dcc36a4a04
4 changed files with 77 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
{ buildPythonPackage, fetchPypi, python
, pytest, pytestcov, watchdog, mock
}:
buildPythonPackage rec {
pname = "hupper";
version = "1.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "02lj6kgaf9xpr0binxwac3gpdhljglyj9fr78s165jc7qd7mifdg";
};
checkPhase = ''
py.test
'';
checkInputs = [ pytest pytestcov watchdog mock ];
}