d6ddf68c11
aeskeyfind: init at 1.0 Update pkgs/tools/security/aeskeyfind/default.nix Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch> Update pkgs/tools/security/aeskeyfind/default.nix Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch> Update pkgs/tools/security/aeskeyfind/default.nix Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch> Update pkgs/tools/security/aeskeyfind/default.nix Co-authored-by: papojari <papojari-git.ovoid@aleeas.com> pylnk3: init at 0.4.2 pylnk3: init at 0.4.2 pylnk3: init at 0.4.2 pylnk3: init at 0.4.2 pylnk3: init at 0.4.2 pylnk3: init at 0.4.2
39 lines
740 B
Nix
39 lines
740 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
, twine
|
|
, invoke
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pylnk3";
|
|
version = "0.4.2";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "pylnk3";
|
|
sha256 = "sha256-yu4BNvYai3iBVNyOfAOsLd5XrcFw8cR4arRyFJHKbpk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pytest
|
|
invoke
|
|
];
|
|
# There are no tests in pylnk3.
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"pylnk3"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for reading and writing Windows shortcut files (.lnk)";
|
|
homepage = "https://github.com/strayge/pylnk";
|
|
license = with licenses; [ lgpl3Only ];
|
|
maintainers = with maintainers; [ fedx-sudo ];
|
|
};
|
|
}
|