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

buildPythonPackage rec {
  pname = "dogpile.core";
  version = "0.4.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0xpdvg4kr1isfkrh1rfsh7za4q5a5s6l2kf9wpvndbwf3aqjyrdy";
  };

  doCheck = false;

  meta = with stdenv.lib; {
    description = "A 'dogpile' lock, typically used as a component of a larger caching solution";
    homepage = https://bitbucket.org/zzzeek/dogpile.core;
    license = licenses.bsd3;
  };
}