nixpkgs/pkgs/development/python-modules/plaster/default.nix
2021-07-21 13:32:17 +02:00

20 lines
335 B
Nix

{ buildPythonPackage, fetchPypi
, pytest, pytest-cov
}:
buildPythonPackage rec {
pname = "plaster";
version = "1.0";
src = fetchPypi {
inherit pname version;
sha256 = "8351c7c7efdf33084c1de88dd0f422cbe7342534537b553c49b857b12d98c8c3";
};
checkPhase = ''
py.test
'';
checkInputs = [ pytest pytest-cov ];
}