39 lines
696 B
Nix
39 lines
696 B
Nix
|
{
|
||
|
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 ];
|
||
|
};
|
||
|
}
|