nixpkgs/pkgs/development/python-modules/platformdirs/default.nix
2023-07-28 12:13:25 +02:00

51 lines
989 B
Nix

{ lib
, appdirs
, buildPythonPackage
, fetchFromGitHub
, hatch-vcs
, hatchling
, pytest-mock
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "platformdirs";
version = "3.9.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-gBiXdnBWp0SlpE6TQPONTXEsQ2XFGCANGdNM/gv7V5s=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
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 ];
};
}