7bd65d54f7
While looking at the sphinx package I noticed it was heavily undermaintained, which is when we noticed nand0p has been inactive for roughly 18 months. It is therefore prudent to assume they will not be maintaining their packages, modules and tests. - Their last contribution to nixpkgs was in 2019/12 - On 2021/05/08 I wrote them an email to the address listed in the maintainer-list, which they didn't reply to.
30 lines
919 B
Nix
30 lines
919 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, mock, pytest, pytest-mock, pytest-server-fixtures, pytest-localserver
|
|
, termcolor, click, markdown2, six, jsonref, pyyaml, xmltodict, attrs
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ramlfications";
|
|
version = "0.1.9";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0xvnna7kaq4nm5nfnwcwbr5bcm2s532hgyp7kq4v9iivn48rrf3v";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A Python RAML parser.";
|
|
homepage = "https://ramlfications.readthedocs.org";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.all;
|
|
};
|
|
|
|
doCheck = false;
|
|
# [darwin] AssertionError: Expected 'update_mime_types' to have been called once. Called 0 times.
|
|
|
|
buildInputs = [ mock pytest pytest-mock pytest-server-fixtures pytest-localserver ];
|
|
|
|
propagatedBuildInputs = [ termcolor click markdown2 six jsonref pyyaml xmltodict attrs ];
|
|
}
|