2018-07-21 00:44:44 +00:00
|
|
|
{ buildPythonPackage, fetchPypi
|
2021-07-20 20:42:24 +00:00
|
|
|
, pytest, pytest-cov
|
2017-09-25 11:39:07 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "plaster";
|
2017-10-25 18:04:35 +00:00
|
|
|
version = "1.0";
|
2017-09-25 11:39:07 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-10-25 18:04:35 +00:00
|
|
|
sha256 = "8351c7c7efdf33084c1de88dd0f422cbe7342534537b553c49b857b12d98c8c3";
|
2017-09-25 11:39:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
2021-07-20 20:42:24 +00:00
|
|
|
checkInputs = [ pytest pytest-cov ];
|
2017-09-25 11:39:07 +00:00
|
|
|
}
|