From 3c1a747ff1fba852209ca9b746527fd090ee05b5 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Thu, 30 May 2019 15:24:57 +0200 Subject: pythonPackages.cachelib: init at 0.1 --- pkgs/development/python-modules/cachelib/default.nix | 18 ++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 20 insertions(+) create mode 100644 pkgs/development/python-modules/cachelib/default.nix (limited to 'pkgs') diff --git a/pkgs/development/python-modules/cachelib/default.nix b/pkgs/development/python-modules/cachelib/default.nix new file mode 100644 index 000000000000..703f3797d1bf --- /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 ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8e7c1a54799b..479d27efb238 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -319,6 +319,8 @@ in { cachecontrol = callPackage ../development/python-modules/cachecontrol { }; + cachelib = callPackage ../development/python-modules/cachelib { }; + cachy = callPackage ../development/python-modules/cachy { }; cdecimal = callPackage ../development/python-modules/cdecimal { }; -- cgit 1.4.1