blob: 795d0968674fc2054e24f5615406bdd68af81c23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
lib,
buildPythonPackage,
fetchPypi,
pytest,
invoke,
}:
buildPythonPackage rec {
pname = "pylnk3";
version = "0.4.3";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "pylnk3";
hash = "sha256-+8X1ErWBOCwqTBHm3zeW+Zdbz9meP8oq/lMephs8SsI=";
};
propagatedBuildInputs = [
pytest
invoke
];
# There are no tests in pylnk3.
doCheck = false;
pythonImportsCheck = [ "pylnk3" ];
meta = {
description = "Python library for reading and writing Windows shortcut files (.lnk)";
mainProgram = "pylnk3";
homepage = "https://github.com/strayge/pylnk";
license = with lib.licenses; [ lgpl3Only ];
maintainers = with lib.maintainers; [ fedx-sudo ];
};
}
|