blob: 58fec058496845db0c84d8af1e6694beaf3885eb (
plain) (
blame)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pydantic,
pytestCheckHook,
pythonOlder,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "datauri";
version = "2.1.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "fcurella";
repo = "python-datauri";
rev = "refs/tags/v${version}";
hash = "sha256-+R1J4IjJ+Vf/+V2kiZyIyAqTAgGLTMJjGePyVRuO5rs=";
};
build-system = [ setuptools ];
dependencies = [ typing-extensions ];
nativeCheckInputs = [
pydantic
pytestCheckHook
];
pythonImportsCheck = [ "datauri" ];
disabledTests = [
# Test is incompatible with pydantic >=2
"test_pydantic"
];
meta = with lib; {
description = "Module for Data URI manipulation";
homepage = "https://github.com/fcurella/python-datauri";
changelog = "https://github.com/fcurella/python-datauri/releases/tag/v${version}";
license = licenses.unlicense;
maintainers = with maintainers; [ yuu ];
};
}
|