mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 08:01:14 +00:00
python.pkgs.docker_registry: remove
It has been deprecated for 4 years.
This commit is contained in:
parent
d3f1679d4e
commit
ab772d066d
|
@ -1,26 +0,0 @@
|
||||||
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
|
|
||||||
, boto, redis, setuptools, simplejson }:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "docker-registry-core";
|
|
||||||
version = "2.0.3";
|
|
||||||
disabled = isPy3k;
|
|
||||||
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
sha256 = "0q036rr0b5734szkj883hkb2kjhgcc5pm3dz4yz8vcim3x7q0zil";
|
|
||||||
};
|
|
||||||
|
|
||||||
DEPS = "loose";
|
|
||||||
|
|
||||||
doCheck = false;
|
|
||||||
propagatedBuildInputs = [ boto redis setuptools simplejson ];
|
|
||||||
|
|
||||||
patchPhase = "> requirements/main.txt";
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "Docker registry core package";
|
|
||||||
homepage = https://github.com/docker/docker-registry;
|
|
||||||
license = licenses.asl20;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -2085,39 +2085,6 @@ in {
|
||||||
|
|
||||||
docker_pycreds = callPackage ../development/python-modules/docker-pycreds {};
|
docker_pycreds = callPackage ../development/python-modules/docker-pycreds {};
|
||||||
|
|
||||||
docker_registry_core = callPackage ../development/python-modules/docker-registry-core {};
|
|
||||||
|
|
||||||
docker_registry = buildPythonPackage rec {
|
|
||||||
name = "docker-registry-0.9.1";
|
|
||||||
disabled = isPy3k;
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/d/docker-registry/${name}.tar.gz";
|
|
||||||
sha256 = "1svm1h59sg4bwj5cy10m016gj0xpiin15nrz5z66h47sbkndvlw3";
|
|
||||||
};
|
|
||||||
|
|
||||||
DEPS = "loose";
|
|
||||||
|
|
||||||
doCheck = false; # requires redis server
|
|
||||||
propagatedBuildInputs = with self; [
|
|
||||||
setuptools docker_registry_core blinker flask gevent gunicorn pyyaml
|
|
||||||
requests rsa sqlalchemy setuptools backports_lzma m2crypto
|
|
||||||
];
|
|
||||||
|
|
||||||
patchPhase = "> requirements/main.txt";
|
|
||||||
|
|
||||||
# Default config uses needed env variables
|
|
||||||
postInstall = ''
|
|
||||||
ln -s $out/lib/python2.7/site-packages/config/config_sample.yml $out/lib/python2.7/site-packages/config/config.yml
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Docker registry core package";
|
|
||||||
homepage = https://github.com/docker/docker-registry;
|
|
||||||
license = licenses.asl20;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
docopt = callPackage ../development/python-modules/docopt { };
|
docopt = callPackage ../development/python-modules/docopt { };
|
||||||
|
|
||||||
doctest-ignore-unicode = callPackage ../development/python-modules/doctest-ignore-unicode { };
|
doctest-ignore-unicode = callPackage ../development/python-modules/doctest-ignore-unicode { };
|
||||||
|
|
Loading…
Reference in a new issue