blob: d2de1532b27989de2e1112837b7cc1414585bb6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "appdirs";
version = "1.4.4";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-fV0BZ7KxuoIWR2Fq9Gp0nRxlN0DdDSQVEA/ibiev30E=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "appdirs" ];
meta = {
description = "Python module for determining appropriate platform-specific dirs";
homepage = "https://github.com/ActiveState/appdirs";
changelog = "https://github.com/ActiveState/appdirs/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|