1{ lib, buildPythonPackage, fetchPypi
2, mock, pytest, pytest-mock, pytest-server-fixtures, pytest-localserver
3, termcolor, click, markdown2, six, jsonref, pyyaml, xmltodict, attrs
4}:
5
6buildPythonPackage rec {
7 pname = "ramlfications";
8 version = "0.1.9";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "0xvnna7kaq4nm5nfnwcwbr5bcm2s532hgyp7kq4v9iivn48rrf3v";
13 };
14
15 meta = with lib; {
16 description = "A Python RAML parser.";
17 homepage = "https://ramlfications.readthedocs.org";
18 license = licenses.asl20;
19 maintainers = with maintainers; [ ];
20 platforms = platforms.all;
21 };
22
23 doCheck = false;
24 # [darwin] AssertionError: Expected 'update_mime_types' to have been called once. Called 0 times.
25
26 buildInputs = [ mock pytest pytest-mock pytest-server-fixtures pytest-localserver ];
27
28 propagatedBuildInputs = [ termcolor click markdown2 six jsonref pyyaml xmltodict attrs ];
29}