1 { lib, buildPythonPackage, fetchPypi, contextlib2, pytest, mock }:
3 buildPythonPackage rec {
10 sha256 = "fbb6a52eb2d9facf292f233adcc6008cffd94343c63ccac9a1cb1f3e6de1db17";
14 substituteInPlace requirements.txt --replace '==' '>='
17 propagatedBuildInputs = [ contextlib2 ];
19 checkInputs = [ pytest mock ];
20 checkPhase = "pytest ./test_schema.py";
23 description = "Library for validating Python data structures";
24 homepage = "https://github.com/keleshev/schema";
25 license = licenses.mit;
26 maintainers = [ maintainers.tobim ];