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;
};
}

View file

@ -2175,22 +2175,7 @@ in {
dogpile_cache = callPackage ../development/python-modules/dogpile.cache { };
dogpile_core = buildPythonPackage rec {
name = "dogpile.core-0.4.1";
src = pkgs.fetchurl {
url = "mirror://pypi/d/dogpile.core/dogpile.core-0.4.1.tar.gz";
sha256 = "be652fb11a8eaf66f7e5c94d418d2eaa60a2fe81dae500f3743a863cc9dbed76";
};
doCheck = false;
meta = {
description = "A 'dogpile' lock, typically used as a component of a larger caching solution";
homepage = https://bitbucket.org/zzzeek/dogpile.core;
license = licenses.bsd3;
};
};
dogpile_core = callPackage ../development/python-modules/dogpile.core { };
dopy = buildPythonPackage rec {
version = "2016-01-04";