File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed
development/python-modules/wrapcco Expand file tree Collapse file tree 2 files changed +38
-0
lines changed 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 @@ -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 { };
You can’t perform that action at this time.
0 commit comments