Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / appdirs / default.nix
blob1f2da03eae041ae13dacd91e4d987f0e43253e04
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "appdirs";
8   version = "1.4.4";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41";
14   };
16   meta = {
17     description = "A python module for determining appropriate platform-specific dirs";
18     homepage = "https://github.com/ActiveState/appdirs";
19     license = lib.licenses.mit;
20   };