blob: 9ffeb56f887d87546e76f21184e9b4d45eb934d4 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
mock,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "schema";
version = "0.7.7";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-faVTq9KVihncJUfDiM3lM5izkZYXWpvlnqHK9asKGAc=";
};
pythonRemoveDeps = [ "contextlib2" ];
nativeCheckInputs = [
mock
pytestCheckHook
];
pythonImportsCheck = [ "schema" ];
meta = with lib; {
description = "Library for validating Python data structures";
homepage = "https://github.com/keleshev/schema";
license = licenses.mit;
maintainers = with maintainers; [ tobim ];
};
}
|