mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-25 18:46:32 +03:00
python310Packages.pywick: remove
This commit is contained in:
parent
1353de5923
commit
2bdae3edec
3 changed files with 1 additions and 75 deletions
|
@ -1,73 +0,0 @@
|
||||||
{ buildPythonPackage
|
|
||||||
, fetchFromGitHub
|
|
||||||
, pythonOlder
|
|
||||||
, pytestCheckHook
|
|
||||||
, dill
|
|
||||||
, h5py
|
|
||||||
, hickle
|
|
||||||
, numpy
|
|
||||||
, opencv4
|
|
||||||
, pandas
|
|
||||||
, pillow
|
|
||||||
, pycm
|
|
||||||
, pyyaml
|
|
||||||
, scipy
|
|
||||||
, requests
|
|
||||||
, scikit-image
|
|
||||||
, six
|
|
||||||
, tabulate
|
|
||||||
, torch
|
|
||||||
, torchvision
|
|
||||||
, tqdm
|
|
||||||
, yacs
|
|
||||||
, lib
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "pywick";
|
|
||||||
version = "0.6.5";
|
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "achaiah";
|
|
||||||
repo = pname;
|
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "0wnijdvqgdpzfdsy1cga3bsr0n7zzsl8hp4dskqwxx087g5h1r84";
|
|
||||||
};
|
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
substituteInPlace setup.py --replace "opencv-python-headless" "opencv"
|
|
||||||
'';
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
|
||||||
dill
|
|
||||||
h5py
|
|
||||||
hickle
|
|
||||||
numpy
|
|
||||||
opencv4
|
|
||||||
pandas
|
|
||||||
pillow
|
|
||||||
pycm
|
|
||||||
pyyaml
|
|
||||||
scipy
|
|
||||||
requests
|
|
||||||
scikit-image
|
|
||||||
tabulate
|
|
||||||
torch
|
|
||||||
torchvision
|
|
||||||
tqdm
|
|
||||||
six
|
|
||||||
yacs
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeCheckInputs = [ pytestCheckHook ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "High-level training framework for Pytorch";
|
|
||||||
homepage = "https://github.com/achaiah/pywick";
|
|
||||||
license = lib.licenses.mit;
|
|
||||||
maintainers = with lib.maintainers; [ bcdarwin ];
|
|
||||||
broken = true; # Nixpkgs missing `albumentations` and `prodict`
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -280,6 +280,7 @@ mapAliases ({
|
||||||
pytwitchapi = twitchapi; # added 2022-03-07
|
pytwitchapi = twitchapi; # added 2022-03-07
|
||||||
pyvcf = throw "pyvcf has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2023-05-19
|
pyvcf = throw "pyvcf has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2023-05-19
|
||||||
PyVirtualDisplay = pyvirtualdisplay; # added 2023-02-19
|
PyVirtualDisplay = pyvirtualdisplay; # added 2023-02-19
|
||||||
|
pywick = throw "pywick has been removed, since it is no longer maintained"; # added 2023-07-01
|
||||||
qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09
|
qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09
|
||||||
Quandl = quandl; # added 2023-02-19
|
Quandl = quandl; # added 2023-02-19
|
||||||
qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages";
|
qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages";
|
||||||
|
|
|
@ -10347,8 +10347,6 @@ self: super: with self; {
|
||||||
|
|
||||||
pywerview = callPackage ../development/python-modules/pywerview { };
|
pywerview = callPackage ../development/python-modules/pywerview { };
|
||||||
|
|
||||||
pywick = callPackage ../development/python-modules/pywick { };
|
|
||||||
|
|
||||||
pywilight = callPackage ../development/python-modules/pywilight { };
|
pywilight = callPackage ../development/python-modules/pywilight { };
|
||||||
|
|
||||||
pywinrm = callPackage ../development/python-modules/pywinrm { };
|
pywinrm = callPackage ../development/python-modules/pywinrm { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue