depot/third_party/nixpkgs/pkgs/development/python-modules/plaster/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

19 lines
328 B
Nix

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