Skip to content

Commit 6bebc40

Browse files
authored
pythonPackages.wrapcco: init at 0.1.3 (#385673)
2 parents af4af3f + d8320b4 commit 6bebc40

File tree

3 files changed

+44
-0
lines changed

3 files changed

+44
-0
lines changed

maintainers/maintainer-list.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9101,6 +9101,12 @@
91019101
github = "gytis-ivaskevicius";
91029102
githubId = 23264966;
91039103
};
9104+
h3cth0r = {
9105+
name = "Hector Miranda";
9106+
email = "[email protected]";
9107+
github = "h3cth0r";
9108+
githubId = 43997408;
9109+
};
91049110
h7x4 = {
91059111
name = "h7x4";
91069112
email = "[email protected]";
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
lib,
3+
buildPythonPackage,
4+
fetchPypi,
5+
numpy,
6+
setuptools,
7+
}:
8+
9+
buildPythonPackage rec {
10+
pname = "wrapcco";
11+
version = "0.1.3";
12+
pyproject = true;
13+
14+
src = fetchPypi {
15+
inherit pname version;
16+
hash = "sha256-nts5cujixB+PfAf9Fk7kOXW4BeI/0q5GYTthCI76ZOA=";
17+
};
18+
19+
build-system = [ setuptools ];
20+
dependencies = [
21+
numpy
22+
setuptools
23+
];
24+
25+
# require non trivial test setup
26+
doCheck = false;
27+
28+
pythonImportsCheck = [ "wrapcco" ];
29+
30+
meta = {
31+
description = "Supercharge Python with C++ extensions!";
32+
homepage = "https://github.com/H3cth0r/wrapc.co";
33+
license = lib.licenses.mit;
34+
maintainers = with lib.maintainers; [ h3cth0r ];
35+
};
36+
}

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18576,6 +18576,8 @@ self: super: with self; {
1857618576

1857718577
worldengine = callPackage ../development/python-modules/worldengine { };
1857818578

18579+
wrapcco = callPackage ../development/python-modules/wrapcco { };
18580+
1857918581
wrapio = callPackage ../development/python-modules/wrapio { };
1858018582

1858118583
wrapt = callPackage ../development/python-modules/wrapt { };

0 commit comments

Comments
 (0)