blob: 19d9f14f21c4acd58c7411fe8bc65c0e41a45890 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "pylzss";
version = "0.3.8";
pyproject = true;
src = fetchFromGitHub {
owner = "m1stadev";
repo = "pylzss";
tag = "v${version}";
hash = "sha256-Y0u9rFJWYWyJUVEgpLtQHsXu0JpTgRKxFJHB+B3EFyU=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "lzss" ];
# upstream's test.py is dysfunctional
doCheck = false;
meta = {
changelog = "https://github.com/m1stadev/pylzss/releases/tag/${src.tag}";
description = "Python library for decoding/encoding LZSS-compressed data";
homepage = "https://github.com/m1stadev/pylzss";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.dotlambda ];
};
}
|