mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 19:44:09 +00:00
python312Packages.opentsne: 1.0.1 -> 1.0.2 (#334432)
This commit is contained in:
commit
1db2176f0b
@ -4,38 +4,35 @@
|
||||
fetchFromGitHub,
|
||||
cython,
|
||||
numpy,
|
||||
oldest-supported-numpy,
|
||||
scipy,
|
||||
scikit-learn,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
wheel,
|
||||
}:
|
||||
|
||||
let
|
||||
self = buildPythonPackage rec {
|
||||
pname = "opentsne";
|
||||
version = "1.0.1";
|
||||
version = "1.0.2";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pavlin-policar";
|
||||
repo = "openTSNE";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-UTfEjjNz1mm5fhyTw9GRlMNURwWlr6kLMjrMngkFV3Y=";
|
||||
hash = "sha256-e1YXF9cdguzcEW0KanIHYlZQiUc+FH8IVOaPshAswco=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
build-system = [
|
||||
cython
|
||||
oldest-supported-numpy
|
||||
numpy
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dependencies = [
|
||||
numpy
|
||||
scipy
|
||||
scikit-learn
|
||||
|
Loading…
Reference in New Issue
Block a user