summary refs log tree commit diff
path: root/pkgs/development/python-modules/cachelib
diff options
context:
space:
mode:
authorGabriel Ebner <gebner@gebner.org>2019-05-30 15:24:57 +0200
committerGabriel Ebner <gebner@gebner.org>2019-05-30 18:10:29 +0200
commit3c1a747ff1fba852209ca9b746527fd090ee05b5 (patch)
tree666c27f60cd12a77ded3d0a55917c410c9ee45d3 /pkgs/development/python-modules/cachelib
parenteccb90a2d997d65dc514253b441e515d8e0241c3 (diff)
downloadnixpkgs-3c1a747ff1fba852209ca9b746527fd090ee05b5.tar
nixpkgs-3c1a747ff1fba852209ca9b746527fd090ee05b5.tar.gz
nixpkgs-3c1a747ff1fba852209ca9b746527fd090ee05b5.tar.bz2
nixpkgs-3c1a747ff1fba852209ca9b746527fd090ee05b5.tar.lz
nixpkgs-3c1a747ff1fba852209ca9b746527fd090ee05b5.tar.xz
nixpkgs-3c1a747ff1fba852209ca9b746527fd090ee05b5.tar.zst
nixpkgs-3c1a747ff1fba852209ca9b746527fd090ee05b5.zip
pythonPackages.cachelib: init at 0.1
Diffstat (limited to 'pkgs/development/python-modules/cachelib')
-rw-r--r--pkgs/development/python-modules/cachelib/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/cachelib/default.nix b/pkgs/development/python-modules/cachelib/default.nix
new file mode 100644
index 00000000000..703f3797d1b
--- /dev/null
+++ b/pkgs/development/python-modules/cachelib/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "cachelib";
+  version = "0.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "13dfv0a4ahgx0wmpqv8jqhshim4229p9c1c7gcsra81pkm89p24b";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = "https://github.com/pallets/cachelib";
+    description = "Collection of cache libraries in the same API interface";
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ gebner ];
+  };
+}