depot/third_party/nixpkgs/pkgs/development/python-modules/plaster/default.nix

26 lines
381 B
Nix

{
buildPythonPackage,
fetchPypi,
pytest,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "plaster";
version = "1.1.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-+L78VL+MEUfBCrQCl+yEwmdvotTqXW9STZQ2qAB075g=";
};
checkPhase = ''
py.test
'';
nativeCheckInputs = [
pytest
pytest-cov-stub
];
}