File tree Expand file tree Collapse file tree
development/python-modules/yapps Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ {
2+ lib ,
3+ buildPythonPackage ,
4+ fetchFromGitHub ,
5+ setuptools ,
6+ } :
7+
8+ buildPythonPackage ( finalAttrs : {
9+ pname = "yapps" ;
10+ version = "2.2.0" ;
11+ src = fetchFromGitHub {
12+ owner = "smurfix" ;
13+ repo = "yapps" ;
14+ rev = "v${ finalAttrs . version } " ;
15+ hash = "sha256-v4LqxIt7pi3FAUs8ZkPJiJ9cUWn8Rx7+GLwS8OFOf8E=" ;
16+ fetchSubmodules = true ;
17+ } ;
18+ pyproject = true ;
19+ build-system = [ setuptools ] ;
20+
21+ meta = {
22+ description = "Parser generator, written in Python, generates Python code" ;
23+ homepage = "https://theory.stanford.edu/~amitp/yapps/" ;
24+ license = lib . licenses . mit ;
25+ maintainers = with lib . maintainers ; [ wucke13 ] ;
26+ } ;
27+ } )
Original file line number Diff line number Diff line change @@ -21766,6 +21766,8 @@ self: super: with self; {
2176621766
2176721767 yappi = callPackage ../development/python-modules/yappi { };
2176821768
21769+ yapps = callPackage ../development/python-modules/yapps { };
21770+
2176921771 yapsy = callPackage ../development/python-modules/yapsy { };
2177021772
2177121773 yara-python = callPackage ../development/python-modules/yara-python { };
You can’t perform that action at this time.
0 commit comments