mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
python312Packages.sampledata: drop
python312Package.sampledata: drop
This commit is contained in:
parent
2b6d4d26d4
commit
435507519c
@ -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"
|
||||
'';
|
||||
}
|
@ -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
|
||||
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user