pythonPackages.dogpile_core: Move to own file
This commit is contained in:
committed by
Frederik Rietdijk
parent
1a09c2bf20
commit
9bbba780df
19
pkgs/development/python-modules/dogpile.core/default.nix
Normal file
19
pkgs/development/python-modules/dogpile.core/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user