lol
0
fork

Configure Feed

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

Merge pull request #166864 from FedX-sudo/pylnk

Pylnk: Init at 0.4.2

authored by

Fabian Affolter and committed by
GitHub
ff5da2c3 abd517dc

+41
+39
pkgs/development/python-modules/pylnk3/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pytest 5 + , twine 6 + , invoke 7 + , pythonOlder 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "pylnk3"; 12 + version = "0.4.2"; 13 + 14 + disabled = pythonOlder "3.6"; 15 + 16 + src = fetchPypi { 17 + inherit version; 18 + pname = "pylnk3"; 19 + sha256 = "sha256-yu4BNvYai3iBVNyOfAOsLd5XrcFw8cR4arRyFJHKbpk="; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + pytest 24 + invoke 25 + ]; 26 + # There are no tests in pylnk3. 27 + doCheck = false; 28 + 29 + pythonImportsCheck = [ 30 + "pylnk3" 31 + ]; 32 + 33 + meta = with lib; { 34 + description = "Python library for reading and writing Windows shortcut files (.lnk)"; 35 + homepage = "https://github.com/strayge/pylnk"; 36 + license = with licenses; [ lgpl3Only ]; 37 + maintainers = with maintainers; [ fedx-sudo ]; 38 + }; 39 + }
+2
pkgs/top-level/python-packages.nix
··· 7228 7228 7229 7229 py-lru-cache = callPackage ../development/python-modules/py-lru-cache { }; 7230 7230 7231 + pylnk3 = callPackage ../development/python-modules/pylnk3 { }; 7232 + 7231 7233 pylru = callPackage ../development/python-modules/pylru { }; 7232 7234 7233 7235 pyls-black = callPackage ../development/python-modules/pyls-black { };