depot/third_party/nixpkgs/pkgs/development/python-modules/platformdirs/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

48 lines
944 B
Nix

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