2 , buildPythonApplication
11 buildPythonApplication rec {
12 pname = "expiringdict";
15 # use fetchFromGitHub instead of fetchPypi because the test suite of
16 # the package is not included into the PyPI tarball
17 src = fetchFromGitHub {
21 sha256 = "07g1vxznmim78bankfl9brr01s31sksdcpwynq1yryh6xw9ri5xs";
33 nosetests -v --with-coverage --cover-package=expiringdict
36 pythonImportsCheck = [ "expiringdict" ];
39 description = "Dictionary with auto-expiring values for caching purposes";
40 homepage = "https://pypi.org/project/expiringdict/";
41 license = licenses.asl20;
42 maintainers = with maintainers; [ gravndal ];