Files
nixpkgs/pkgs/development/python-modules/platformdirs/default.nix
T
Martin Weinelt 8056f9250c treewide: remove redundant SETUPTOOLS_SCM_PRETEND_VERSION usage
The setuptools-scm packages gained a setup hook, that sets it to the
derivation version automatically, so setting it to that manually has
become redundant.

This also affects downstream consumers of setuptools-scm, like hatch-vcs
or flit-scm.
2023-12-20 20:16:39 +01:00

49 lines
945 B
Nix

{ lib
, appdirs
, buildPythonPackage
, fetchFromGitHub
, hatch-vcs
, hatchling
, pytest-mock
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "platformdirs";
version = "3.10.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-Ytilbs29oxuwLfoKTXNQxlh8qBF39F2ZRK8imd57A1w=";
};
nativeBuildInputs = [
hatchling
hatch-vcs
];
nativeCheckInputs = [
appdirs
pytest-mock
pytestCheckHook
];
pythonImportsCheck = [
"platformdirs"
];
meta = with lib; {
description = "Module for determining appropriate platform-specific directories";
homepage = "https://platformdirs.readthedocs.io/";
changelog = "https://github.com/platformdirs/platformdirs/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}