Merge pull request #271443 from r-ryantm/auto-update/python311Packages.opentsne

python311Packages.opentsne: 1.0.0 -> 1.0.1
This commit is contained in:
OTABI Tomoya
2023-12-03 15:40:24 +09:00
committed by GitHub
@@ -7,7 +7,7 @@
, scipy
, scikit-learn
, pytestCheckHook
, nix-update-script
, pythonOlder
, setuptools
, wheel
}:
@@ -15,14 +15,16 @@
let
self = buildPythonPackage rec {
pname = "opentsne";
version = "1.0.0";
format = "pyproject";
version = "1.0.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pavlin-policar";
repo = "openTSNE";
rev = "v${version}";
hash = "sha256-L5Qx6dMJlXF3EaWwlFTQ3dkhGXc5PvQBXYJo+QO+Hxc=";
rev = "refs/tags/v${version}";
hash = "sha256-UTfEjjNz1mm5fhyTw9GRlMNURwWlr6kLMjrMngkFV3Y=";
};
nativeBuildInputs = [
@@ -32,13 +34,19 @@ let
wheel
];
propagatedBuildInputs = [ numpy scipy scikit-learn ];
propagatedBuildInputs = [
numpy
scipy
scikit-learn
];
pythonImportsCheck = [
"openTSNE"
];
pythonImportsCheck = [ "openTSNE" ];
doCheck = false;
passthru = {
updateScript = nix-update-script {};
tests.pytest = self.overridePythonAttrs (old: {
pname = "${old.pname}-tests";
format = "other";
@@ -53,12 +61,12 @@ let
});
};
meta = {
meta = with lib; {
description = "Modular Python implementation of t-Distributed Stochasitc Neighbor Embedding";
homepage = "https://github.com/pavlin-policar/openTSNE";
changelog = "https://github.com/pavlin-policar/openTSNE/releases/tag/${version}";
license = [ lib.licenses.bsd3 ];
maintainers = [ lib.maintainers.lucasew ];
changelog = "https://github.com/pavlin-policar/openTSNE/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ lucasew ];
};
};
in self