blob: 187055381846200b62a704c84991ff4f52fb1f68 (
about) (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "zlib-wrapper";
version = "0.1.3";
pyproject = true;
src = fetchPypi {
pname = "zlib_wrapper";
inherit version;
hash = "sha256-Yxqc7fSDdnAPlGLzTbgcEQxiTKJDSJmPgm0eV62JiGQ=";
};
build-system = [ setuptools ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "zlib_wrapper" ];
meta = {
description = "Wrapper around zlib with custom header crc32";
homepage = "https://pypi.org/project/zlib_wrapper/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fab ];
};
}
|