depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-cov-stub/default.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 ];
};
}