pythonPackages.dogpile_core: Move to own file

This commit is contained in:
Elis Hirwing
2018-04-03 15:07:25 +02:00
committed by Frederik Rietdijk
parent 1a09c2bf20
commit 9bbba780df
2 changed files with 20 additions and 16 deletions

View File

@@ -0,0 +1,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;
};
}