Files
nixpkgs/pkgs/development/python-modules/mkdocstrings-python/default.nix
Martin Weinelt e97e82f831 python310Packages.pdm-backend: set package version through setup-hook
Packages that consume pdm-backend often use it, quite similary to
setuptools-scm-version, for dynamic versioning. That works fine when
pulling releases from PyPi, but needs special handling, when releases
are pulled from Git.

The pdm-backend package will now always export `PDM_BUILD_SCM_VERSION=`
to propagate the derivation version to pdm-backend.

This behaviour can be disabled by setting

```
dontSetPdmBackendVersion = true;
```
2023-06-06 12:15:00 +02:00

57 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, griffe
, mkdocs-material
, mkdocstrings
, pdm-backend
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "mkdocstrings-python";
version = "0.10.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mkdocstrings";
repo = "python";
rev = version;
hash = "sha256-VGPlOHQNtXrfmcne93xDIxN20KDGlTQrjeAKhX/L6K0=";
};
nativeBuildInputs = [
pdm-backend
];
propagatedBuildInputs = [
griffe
mkdocstrings
];
nativeCheckInputs = [
mkdocs-material
pytestCheckHook
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'license = "ISC"' 'license = {text = "ISC"}' \
'';
pythonImportsCheck = [
"mkdocstrings_handlers"
];
meta = with lib; {
description = "Python handler for mkdocstrings";
homepage = "https://github.com/mkdocstrings/python";
changelog = "https://github.com/mkdocstrings/python/blob/${version}/CHANGELOG.md";
license = licenses.isc;
maintainers = with maintainers; [ fab ];
};
}