Files
nixpkgs/pkgs/development/python-modules/pytest-cov-stub/default.nix
2025-03-14 05:15:05 +01:00

23 lines
460 B
Nix

{
lib,
buildPythonPackage,
hatchling,
}:
buildPythonPackage {
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 ];
};
}