mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
python311Packages.zipstream-new: remove
Was an octoprint dependency, but not anymore.
This commit is contained in:
parent
4704eabb5e
commit
2b1cad4389
@ -1,39 +0,0 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, nose
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zipstream-new";
|
||||
version = "1.1.8";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "arjan-s";
|
||||
repo = "python-zipstream";
|
||||
rev = "v${version}";
|
||||
sha256 = "14vhgg8mcjqi8cpzrw8qzbij2fr2a63l2a8fhil21k2r8vzv92cv";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [
|
||||
"zipstream"
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
nose
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
nosetests
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Like Python's ZipFile module, except it works as a generator that provides the file in many small chunks";
|
||||
homepage = "https://github.com/arjan-s/python-zipstream";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
}
|
@ -485,6 +485,7 @@ mapAliases ({
|
||||
zake = throw "zake has been removed because it is abandoned"; # added 2023-06-20
|
||||
zc-buildout221 = zc-buildout; # added 2021-07-21
|
||||
zc_buildout_nix = throw "zc_buildout_nix was pinned to a version no longer compatible with other modules";
|
||||
zipstream-new = throw "zipstream-new has been removed, because it was packaged as a dependency for octoprint, which has switched to zipstream-ng since."; # added 2024-01-05
|
||||
zope_broken = throw "zope_broken has been removed because it is obsolete and not needed in zodb>=3.10"; # added 2023-07-26
|
||||
zope_component = zope-component; # added 2023-07-28
|
||||
zope_configuration = zope-configuration; # added 2023-11-12
|
||||
|
@ -16423,8 +16423,6 @@ self: super: with self; {
|
||||
|
||||
zipstream = callPackage ../development/python-modules/zipstream { };
|
||||
|
||||
zipstream-new = callPackage ../development/python-modules/zipstream-new { };
|
||||
|
||||
zipstream-ng = callPackage ../development/python-modules/zipstream-ng { };
|
||||
|
||||
zlib-ng = callPackage ../development/python-modules/zlib-ng {
|
||||
|
Loading…
Reference in New Issue
Block a user