File tree Expand file tree Collapse file tree 3 files changed +44
-0
lines changed
development/python-modules/wrapcco Expand file tree Collapse file tree 3 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 91019101 github = "gytis-ivaskevicius";
91029102 githubId = 23264966;
91039103 };
9104+ h3cth0r = {
9105+ name = "Hector Miranda";
9106+ 9107+ github = "h3cth0r";
9108+ githubId = 43997408;
9109+ };
91049110 h7x4 = {
91059111 name = "h7x4";
91069112
Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff 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 { };
You can’t perform that action at this time.
0 commit comments