1{ stdenv, buildPythonPackage, fetchPypi, pytest }:
2
3buildPythonPackage rec {
4
5 pname = "schema";
6 version = "0.6.8";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "fa1a53fe5f3b6929725a4e81688c250f46838e25d8c1885a10a590c8c01a7b74";
11 };
12
13 checkInputs = [ pytest ];
14
15 meta = with stdenv.lib; {
16 description = "Library for validating Python data structures";
17 homepage = https://github.com/keleshev/schema;
18 license = licenses.mit;
19 };
20}