12 buildPythonPackage rec {
13 pname = "backports.functools_lru_cache";
17 inherit pname version;
18 sha256 = "8fde5f188da2d593bd5bc0be98d9abc46c95bb8a9dde93429570192ee6cc2d4a";
21 nativeBuildInputs = [ setuptools_scm ];
23 checkInputs = [ pytest pytest-flake8 pytest-black pytestcov ];
24 # ironically, they fail a linting test, and pytest.ini forces that test suite
26 rm backports/functools_lru_cache.py
27 pytest -k 'not format'
30 # Test fail on Python 2
34 description = "Backport of functools.lru_cache";
35 homepage = "https://github.com/jaraco/backports.functools_lru_cache";
36 license = lib.licenses.mit;