blob: 00f469329e660e61b5b3e7dcf5c25bc44ad1e959 (
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
|
{
lib,
fetchPypi,
buildPythonPackage,
fetchpatch,
libraw,
pytest,
mock,
}:
buildPythonPackage rec {
pname = "rawkit";
version = "0.6.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0vrhrpr70i61y5q5ysk341x1539ff1q1k82g59zq69lv16s0f76s";
};
patches = [
# Python 3.7 compatibility
(fetchpatch {
url = "https://github.com/photoshell/rawkit/commit/663e90afa835d398aedd782c87b8cd0bff64bc9f.patch";
sha256 = "1cdw0x9bgk0b5jnpjnmd8jpbaryarr3cjqizq44366qh3l0jycxy";
})
];
buildInputs = [ libraw ];
nativeCheckInputs = [
pytest
mock
];
checkPhase = ''
py.test tests
'';
meta = with lib; {
description = "CTypes based LibRaw bindings for Python";
homepage = "https://rawkit.readthedocs.org/";
license = licenses.mit;
maintainers = [ ];
};
}
|