nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.isosurfaces: init at 0.1.0

+38
+36
pkgs/development/python-modules/isosurfaces/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , numpy 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "isosurfaces"; 9 + version = "0.1.0"; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + sha256 = "fa1b44e5e59d2f429add49289ab89e36f8dcda49b7badd99e0beea273be331f4"; 14 + }; 15 + 16 + propagatedBuildInputs = [ numpy ]; 17 + 18 + # no tests defined upstream 19 + doCheck = false; 20 + 21 + pythonImportsCheck = [ "isosurfaces" ]; 22 + 23 + meta = with lib; { 24 + homepage = "https://github.com/jared-hughes/isosurfaces"; 25 + description = "Construct isolines/isosurfaces of a 2D/3D scalar field defined by a function"; 26 + longDescription = '' 27 + Construct isolines/isosurfaces of a 2D/3D scalar field defined by a 28 + function, i.e. curves over which f(x,y)=0 or surfaces over which 29 + f(x,y,z)=0. Most similar libraries use marching squares or similar over a 30 + uniform grid, but this uses a quadtree to avoid wasting time sampling 31 + many far from the implicit surface. 32 + ''; 33 + license = licenses.mit; 34 + maintainers = with maintainers; [ friedelino ]; 35 + }; 36 + }
+2
pkgs/top-level/python-packages.nix
··· 4303 4303 4304 4304 isort = callPackage ../development/python-modules/isort { }; 4305 4305 4306 + isosurfaces = callPackage ../development/python-modules/isosurfaces { }; 4307 + 4306 4308 isounidecode = callPackage ../development/python-modules/isounidecode { }; 4307 4309 4308 4310 isoweek = callPackage ../development/python-modules/isoweek { };