mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
21 lines
440 B
Nix
21 lines
440 B
Nix
{ 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;
|
|
};
|
|
}
|