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

buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "cachetools";
  version = "2.0.1";
  disabled = isPyPy;  # a test fails

  src = fetchPypi {
    inherit pname version;
    sha256 = "ede01f2d3cbd6ddc9e35e16c2b0ce011d8bb70ce0dbaf282f5b4df24b213bc5d";
  };

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