mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
pylnk3: init at 0.4.2
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
This commit is contained in:
parent
32a8f307ac
commit
d6ddf68c11
2 changed files with 41 additions and 0 deletions
39
pkgs/development/python-modules/pylnk3/default.nix
Normal file
39
pkgs/development/python-modules/pylnk3/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -7122,6 +7122,8 @@ in {
|
|||
|
||||
py-lru-cache = callPackage ../development/python-modules/py-lru-cache { };
|
||||
|
||||
pylnk3 = callPackage ../development/python-modules/pylnk3 { };
|
||||
|
||||
pylru = callPackage ../development/python-modules/pylru { };
|
||||
|
||||
pyls-black = callPackage ../development/python-modules/pyls-black { };
|
||||
|
|
Loading…
Reference in a new issue