1{
2 lib,
3 buildPythonPackage,
4 hatchling,
5}:
6
7buildPythonPackage {
8 pname = "pytest-cov-stub";
9 # please use pythonRemoveDeps rather than change this version
10 version = (lib.importTOML ./src/pyproject.toml).project.version;
11 pyproject = true;
12
13 src = ./src;
14
15 build-system = [ hatchling ];
16
17 meta = with lib; {
18 description = "Nixpkgs checkPhase stub for pytest-cov";
19 license = licenses.mit;
20 maintainers = [ lib.maintainers.pbsds ];
21 };
22}