mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
Merge pull request #218616 from fabaff/suseapi-remove
python310Packages.suseapi: remove
This commit is contained in:
commit
982e08119d
@ -1,39 +0,0 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, django
|
||||
, suds-jurko
|
||||
, python-ldap
|
||||
, mechanize
|
||||
, beautifulsoup4
|
||||
, pyxdg
|
||||
, python-dateutil
|
||||
, requests
|
||||
, httpretty
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "suseapi";
|
||||
version = "0.24-31-g0fcbe96";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "openSUSE";
|
||||
repo = "python-${pname}";
|
||||
rev = version;
|
||||
sha256 = "0hyzq0h1w8gp0zfvhqh7qsgcg1wp05a14371m6bn5a7gss93rbv4";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
django suds-jurko python-ldap mechanize beautifulsoup4 pyxdg python-dateutil requests
|
||||
];
|
||||
|
||||
buildInputs = [ httpretty ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/openSUSE/python-suseapi/";
|
||||
description = "Python module to work with various SUSE services";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
};
|
||||
}
|
@ -234,6 +234,7 @@ mapAliases ({
|
||||
sqlalchemy_migrate = sqlalchemy-migrate; # added 2021-10-28
|
||||
SQLAlchemy-ImageAttach = throw "sqlalchemy-imageattach has been removed as it is incompatible with sqlalchemy 1.4 and unmaintained"; # added 2022-04-23
|
||||
suds-jurko = throw "suds-jurko has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2023-02-27
|
||||
suseapi = throw "suseapi has been removed because it is no longer maintained"; # added 2023-02-27
|
||||
tensorflow-bin_2 = tensorflow-bin; # added 2021-11-25
|
||||
tensorflow-build_2 = tensorflow-build; # added 2021-11-25
|
||||
tensorflow-estimator = tensorflow-estimator-bin; # added 2023-01-17
|
||||
|
@ -11228,8 +11228,6 @@ self: super: with self; {
|
||||
|
||||
survey = callPackage ../development/python-modules/survey { };
|
||||
|
||||
suseapi = callPackage ../development/python-modules/suseapi { };
|
||||
|
||||
svg2tikz = callPackage ../development/python-modules/svg2tikz { };
|
||||
|
||||
svglib = callPackage ../development/python-modules/svglib { };
|
||||
|
Loading…
Reference in New Issue
Block a user