python.pkgs.appdirs: 1.4.0 -> 1.4.3

This commit is contained in:
Frederik Rietdijk
2017-06-01 18:01:43 +02:00
parent 10ee7b2bda
commit f069498c3a
2 changed files with 22 additions and 14 deletions

View File

@@ -0,0 +1,21 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "appdirs";
version = "1.4.3";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "9e5896d1372858f8dd3344faf4e5014d21849c756c8d5701f78f8a103b372d92";
};
meta = {
description = "A python module for determining appropriate platform-specific dirs";
homepage = http://github.com/ActiveState/appdirs;
license = lib.licenses.mit;
};
}