My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/appdirs/default.nix

20 lines
440 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "appdirs";
version = "1.4.4";
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;
};
}