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