nixpkgs/pkgs/development/python-modules/plaster/default.nix
2023-01-05 01:10:19 +01:00

20 lines
324 B
Nix

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