5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
22 lines
410 B
Nix
22 lines
410 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
python,
|
|
hatchling,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-cov-stub";
|
|
version = (lib.importTOML ./src/pyproject.toml).project.version;
|
|
pyproject = true;
|
|
|
|
src = ./src;
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
meta = with lib; {
|
|
description = "Nixpkgs checkPhase stub for pytest-cov";
|
|
license = licenses.mit;
|
|
maintainers = [ lib.maintainers.pbsds ];
|
|
};
|
|
}
|