summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-06-01 18:01:43 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-06-01 18:24:48 +0200
commitf069498c3ab3e86145bc991cd02a38be1a275c37 (patch)
treeafeb43145bf19af9ba070117e91ee57b376aba62 /pkgs/development/python-modules
parent10ee7b2bdae7378b2247d547d8b6b978234b9487 (diff)
downloadnixlib-f069498c3ab3e86145bc991cd02a38be1a275c37.tar
nixlib-f069498c3ab3e86145bc991cd02a38be1a275c37.tar.gz
nixlib-f069498c3ab3e86145bc991cd02a38be1a275c37.tar.bz2
nixlib-f069498c3ab3e86145bc991cd02a38be1a275c37.tar.lz
nixlib-f069498c3ab3e86145bc991cd02a38be1a275c37.tar.xz
nixlib-f069498c3ab3e86145bc991cd02a38be1a275c37.tar.zst
nixlib-f069498c3ab3e86145bc991cd02a38be1a275c37.zip
python.pkgs.appdirs: 1.4.0 -> 1.4.3
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/appdirs/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/appdirs/default.nix b/pkgs/development/python-modules/appdirs/default.nix
new file mode 100644
index 000000000000..211d51c241d7
--- /dev/null
+++ b/pkgs/development/python-modules/appdirs/default.nix
@@ -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;
+  };
+}