tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.memory-allocator: init at 0.1.0
Mauricio Collares
4 years ago
0e94271c
a6a68eeb
+29
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
memory-allocator
default.nix
top-level
python-packages.nix
+27
pkgs/development/python-modules/memory-allocator/default.nix
···
1
1
+
{ lib
2
2
+
, fetchPypi
3
3
+
, buildPythonPackage
4
4
+
, cython
5
5
+
}:
6
6
+
7
7
+
buildPythonPackage rec {
8
8
+
pname = "memory-allocator";
9
9
+
version = "0.1.0";
10
10
+
11
11
+
src = fetchPypi {
12
12
+
inherit version;
13
13
+
pname = "memory_allocator";
14
14
+
sha256 = "sha256-UUcR71e3eAQIQpmWM+AVQxVtgHvrNjaIlHo5pURUln0=";
15
15
+
};
16
16
+
17
17
+
propagatedBuildInputs = [
18
18
+
cython
19
19
+
];
20
20
+
21
21
+
meta = with lib; {
22
22
+
description = "An extension class to allocate memory easily with cython";
23
23
+
homepage = "https://github.com/sagemath/memory_allocator/";
24
24
+
maintainers = teams.sage.members;
25
25
+
license = licenses.lgpl3Plus;
26
26
+
};
27
27
+
}
+2
pkgs/top-level/python-packages.nix
···
4469
4469
4470
4470
memcached = callPackage ../development/python-modules/memcached { };
4471
4471
4472
4472
+
memory-allocator = callPackage ../development/python-modules/memory-allocator { };
4473
4473
+
4472
4474
memory_profiler = callPackage ../development/python-modules/memory_profiler { };
4473
4475
4474
4476
mercantile = callPackage ../development/python-modules/mercantile { };