mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
pythonPackages.dogpile_core: Move to own file
This commit is contained in:
parent
1a09c2bf20
commit
9bbba780df
2 changed files with 20 additions and 16 deletions
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;
|
||||
};
|
||||
}
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue