Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / appdirs / default.nix
blob22fa3dc98fb07ae3a232108193141c34ffa7b6f4
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "appdirs";
8   version = "1.4.4";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41";
13   };
15   meta = {
16     description = "A python module for determining appropriate platform-specific dirs";
17     homepage = "https://github.com/ActiveState/appdirs";
18     license = lib.licenses.mit;
19   };