about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cachetools/1.nix
blob: 05f3afe758a6848c5581c2ac216cd6d02d6a6dd3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, buildPythonPackage, fetchPypi, isPyPy }:

buildPythonPackage rec {
  pname = "cachetools";
  version = "2.1.0";
  disabled = isPyPy;  # a test fails

  src = fetchPypi {
    inherit pname version;
    sha256 = "90f1d559512fc073483fe573ef5ceb39bf6ad3d39edc98dc55178a2b2b176fa3";
  };

  meta = with stdenv.lib; {
    homepage = "https://github.com/tkem/cachetools";
    license = licenses.mit;
  };
}