python312Packages.sampledata: drop

python312Package.sampledata: drop
This commit is contained in:
Sigmanificient 2024-07-26 00:36:58 +02:00
parent 2b6d4d26d4
commit 435507519c
3 changed files with 1 additions and 45 deletions

View File

@ -1,43 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
nose,
pytz,
six,
versiontools,
}:
buildPythonPackage rec {
pname = "sampledata";
version = "0.3.7";
format = "setuptools";
meta = {
description = "Sample Data generator for Python";
homepage = "https://github.com/jespino/sampledata";
license = lib.licenses.bsd3;
};
src = fetchPypi {
inherit pname version;
sha256 = "1kx2j49lag30d32zhzsr50gl5b949wa4lcdap2filg0d07picsdh";
};
buildInputs = [
nose
versiontools
];
propagatedBuildInputs = [
pytz
six
];
# ERROR: test_image_path_from_directory (tests.tests.TestImageHelpers)
# ERROR: test_image_stream (tests.tests.TestImageHelpers)
doCheck = false;
checkPhase = ''
nosetests -e "TestImageHelpers"
'';
}

View File

@ -517,6 +517,7 @@ mapAliases ({
ruamel_yaml_clib = ruamel-yaml-clib; # added 2021-11-01
inherit (super.pkgs) ruff-lsp; # added 2023-06-23
runway-python = throw "SDK has been deprecated and was archived by upstream"; # added 2023-05-03
sampledata = throw "sampledata has been removed, it was unmaintained since 2017"; # added 2024-07-27
sapi-python-client = kbcstorage; # added 2022-04-20
scikitimage = scikit-image; # added 2023-05-14
scikitlearn = scikit-learn; # added 2021-07-21

View File

@ -13880,8 +13880,6 @@ self: super: with self; {
samarium = callPackage ../development/python-modules/samarium { };
sampledata = callPackage ../development/python-modules/sampledata { };
samplerate = callPackage ../development/python-modules/samplerate {
inherit (pkgs) libsamplerate;
};