evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / appdirs / default.nix
blobd3e71a5f9051b745de5822baf0d33742099519d9
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   setuptools,
7   unittestCheckHook,
8 }:
10 buildPythonPackage rec {
11   pname = "appdirs";
12   version = "1.4.4";
13   pypoject = true;
15   disabled = pythonOlder "3.8";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-fV0BZ7KxuoIWR2Fq9Gp0nRxlN0DdDSQVEA/ibiev30E=";
20   };
22   build-system = [ setuptools ];
24   nativeCheckInputs = [ unittestCheckHook ];
26   pythonImportsCheck = [ "appdirs" ];
28   meta = {
29     description = "Python module for determining appropriate platform-specific dirs";
30     homepage = "https://github.com/ActiveState/appdirs";
31     changelog = "https://github.com/ActiveState/appdirs/releases/tag/${version}";
32     license = lib.licenses.mit;
33     maintainers = [ ];
34   };