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
}:
buildPythonPackage rec {
pname = "plaster";
version = "0.5";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0z48pis4qyhyqj3ia82r04diaa153dw66wrpbly06hdzvhw8j0ia";
};
checkPhase = ''
py.test
'';
checkInputs = [ pytest pytestcov ];
}