btrbk: add mainProgram (#356350)
[NixPkgs.git] / pkgs / development / python-modules / pytest-cov-stub / default.nix
blob1a177559f31908eca9ec280273c70311be6b1336
2   lib,
3   buildPythonPackage,
4   hatchling,
5 }:
7 buildPythonPackage rec {
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;
13   src = ./src;
15   build-system = [ hatchling ];
17   meta = with lib; {
18     description = "Nixpkgs checkPhase stub for pytest-cov";
19     license = licenses.mit;
20     maintainers = [ lib.maintainers.pbsds ];
21   };