159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
22 lines
464 B
Nix
22 lines
464 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
hatchling,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-cov-stub";
|
|
# please use pythonRemoveDeps rather than change this version
|
|
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 ];
|
|
};
|
|
}
|