2018-08-15 10:02:55 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pytest }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "fastcache";
|
2019-05-02 05:25:25 +01:00
|
|
|
version = "1.1.0";
|
2018-08-15 10:02:55 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-02 05:25:25 +01:00
|
|
|
sha256 = "0avqpswfmw5b08xx3ib6zchc5bis390fn1v74vg7nnrkf1pb3qbd";
|
2018-08-15 10:02:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "C implementation of Python3 lru_cache for Python 2 and 3";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/pbrady/fastcache";
|
2018-08-15 10:02:55 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.bhipple ];
|
|
|
|
};
|
|
|
|
}
|