Skip to content

Commit d8320b4

Browse files
committed
python312Packages.wrapcco: init at 0.1.3
1 parent 42fa245 commit d8320b4

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed
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
@@ -18460,6 +18460,8 @@ self: super: with self; {
1846018460

1846118461
worldengine = callPackage ../development/python-modules/worldengine { };
1846218462

18463+
wrapcco = callPackage ../development/python-modules/wrapcco { };
18464+
1846318465
wrapio = callPackage ../development/python-modules/wrapio { };
1846418466

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

0 commit comments

Comments
 (0)