File tree Expand file tree Collapse file tree 2 files changed +43
-0
lines changed
development/python-modules/wirerope Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ lib ,
3+ buildPythonPackage ,
4+ fetchFromGitHub ,
5+ setuptools ,
6+ six ,
7+ pytestCheckHook ,
8+ pytest-cov-stub ,
9+ } :
10+
11+ buildPythonPackage rec {
12+ pname = "wirerope" ;
13+ version = "0.4.7" ;
14+ pyproject = true ;
15+
16+ src = fetchFromGitHub {
17+ owner = "youknowone" ;
18+ repo = "wirerope" ;
19+ rev = version ;
20+ hash = "sha256-Xi6I/TXttjCregknmZUhV5GAiNR/HmEi4wCZiCmp0DQ=" ;
21+ } ;
22+
23+ build-system = [ setuptools ] ;
24+
25+ dependencies = [ six ] ;
26+
27+ pythonImportsCheck = [ "wirerope" ] ;
28+
29+ nativeCheckInputs = [
30+ pytestCheckHook
31+ pytest-cov-stub
32+ ] ;
33+
34+ meta = with lib ; {
35+ description = "Wrappers for class callables" ;
36+ homepage = "https://github.com/youknowone/wirerope" ;
37+ changelog = "https://github.com/youknowone/wirerope/releases/tag/${ version } " ;
38+ license = licenses . bsd2WithViews ;
39+ maintainers = with maintainers ; [ pbsds ] ;
40+ } ;
41+ }
Original file line number Diff line number Diff line change @@ -17457,6 +17457,8 @@ self: super: with self; {
1745717457
1745817458 winsspi = callPackage ../development/python-modules/winsspi { };
1745917459
17460+ wirerope = callPackage ../development/python-modules/wirerope { };
17461+
1746017462 withings-api = callPackage ../development/python-modules/withings-api { };
1746117463
1746217464 withings-sync = callPackage ../development/python-modules/withings-sync { };
You can’t perform that action at this time.
0 commit comments