Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / cachelib / default.nix
blob154c67bb379fcdbdd691d0c9a52fa86732dba15f
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "cachelib";
5   version = "0.1.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "47e95a67d68c729cbad63285a790a06f0e0d27d71624c6e44c1ec3456bb4476f";
10   };
12   meta = with lib; {
13     homepage = "https://github.com/pallets/cachelib";
14     description = "Collection of cache libraries in the same API interface";
15     license = licenses.bsd3;
16     maintainers = with maintainers; [ gebner ];
17   };