blob: 1f2da03eae041ae13dacd91e4d987f0e43253e04 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "appdirs";
version = "1.4.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41";
};
meta = {
description = "A python module for determining appropriate platform-specific dirs";
homepage = "https://github.com/ActiveState/appdirs";
license = lib.licenses.mit;
};
}
|