python3Packages.memory-allocator: init at 0.1.0

+29
+27
pkgs/development/python-modules/memory-allocator/default.nix
··· 1 + { lib 2 + , fetchPypi 3 + , buildPythonPackage 4 + , cython 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "memory-allocator"; 9 + version = "0.1.0"; 10 + 11 + src = fetchPypi { 12 + inherit version; 13 + pname = "memory_allocator"; 14 + sha256 = "sha256-UUcR71e3eAQIQpmWM+AVQxVtgHvrNjaIlHo5pURUln0="; 15 + }; 16 + 17 + propagatedBuildInputs = [ 18 + cython 19 + ]; 20 + 21 + meta = with lib; { 22 + description = "An extension class to allocate memory easily with cython"; 23 + homepage = "https://github.com/sagemath/memory_allocator/"; 24 + maintainers = teams.sage.members; 25 + license = licenses.lgpl3Plus; 26 + }; 27 + }
+2
pkgs/top-level/python-packages.nix
··· 4469 4469 4470 4470 memcached = callPackage ../development/python-modules/memcached { }; 4471 4471 4472 + memory-allocator = callPackage ../development/python-modules/memory-allocator { }; 4473 + 4472 4474 memory_profiler = callPackage ../development/python-modules/memory_profiler { }; 4473 4475 4474 4476 mercantile = callPackage ../development/python-modules/mercantile { };