lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python38Packages.generic: init at 1.0.1

+34
+32
pkgs/development/python-modules/generic/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchPypi 5 + , poetry-core 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "generic"; 10 + version = "1.0.1"; 11 + disabled = pythonOlder "3.7"; 12 + 13 + format = "pyproject"; 14 + 15 + src = fetchPypi { 16 + inherit pname version; 17 + sha256 = "sha256-ex93I+ofo5lP6qoolZwzjxSspeqJimY3vpB32RLJ00k="; 18 + }; 19 + 20 + nativeBuildInputs = [ 21 + poetry-core 22 + ]; 23 + 24 + pythonImportsCheck = [ "generic" ]; 25 + 26 + meta = with lib; { 27 + description = "Generic programming (Multiple dispatch) library for Python"; 28 + maintainers = with maintainers; [ wolfangaukang ]; 29 + homepage = "https://github.com/gaphor/generic"; 30 + license = licenses.bsdOriginal; 31 + }; 32 + }
+2
pkgs/top-level/python-packages.nix
··· 2958 2958 2959 2959 genanki = callPackage ../development/python-modules/genanki { }; 2960 2960 2961 + generic = callPackage ../development/python-modules/generic { }; 2962 + 2961 2963 genome-collector = callPackage ../development/python-modules/genome-collector { }; 2962 2964 2963 2965 genpy = callPackage ../development/python-modules/genpy { };