summary refs log tree commit diff
path: root/pkgs/development/python-modules/dogpile.core/default.nix
blob: 41340cda26ee096a99d6f1bb18f290a79ba7bd37 (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;
  };
}