My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/plaster/default.nix

19 lines
335 B

{ 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 ];
}