python310Packages.euclid3,python311Packages.euclid3: init at 0.01
Co-authored-by: Rohit <rohitsutradhar311@gmail.com> Co-authored-by: Jeremy Fleischman <jeremyfleischman@gmail.com> Co-authored-by: Shahar "Dawn" Or <mightyiampresence@gmail.com> Co-authored-by: Alejandro Sanchez Medina <alejandrosanchzmedina@gmail.com> Co-authored-by: Matúš Ferech <matus.ferech@gmail.com>
This commit is contained in:
parent
c0210aa307
commit
58a5da1346
2 changed files with 27 additions and 0 deletions
25
pkgs/development/python-modules/euclid3/default.nix
Normal file
25
pkgs/development/python-modules/euclid3/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ buildPythonPackage
|
||||
, lib
|
||||
, fetchPypi
|
||||
}:
|
||||
buildPythonPackage rec {
|
||||
pname = "euclid3";
|
||||
version = "0.01";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-JbgnpXrb/Zo/qGJeQ6vD6Qf2HeYiND5+U4SC75tG/Qs=";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [
|
||||
"euclid3"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "2D and 3D vector, matrix, quaternion and geometry module.";
|
||||
homepage = "http://code.google.com/p/pyeuclid/";
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = with maintainers; [ jfly matusf ];
|
||||
};
|
||||
}
|
|
@ -3657,6 +3657,8 @@ self: super: with self; {
|
|||
|
||||
et-xmlfile = callPackage ../development/python-modules/et-xmlfile { };
|
||||
|
||||
euclid3 = callPackage ../development/python-modules/euclid3 { };
|
||||
|
||||
eufylife-ble-client = callPackage ../development/python-modules/eufylife-ble-client { };
|
||||
|
||||
evaluate = callPackage ../development/python-modules/evaluate { };
|
||||
|
|
Loading…
Reference in a new issue