pythonPackages.prance: init at 0.15.0
This commit is contained in:
parent
749478d1a7
commit
4cb6a88b38
57
pkgs/development/python-modules/prance/default.nix
Normal file
57
pkgs/development/python-modules/prance/default.nix
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, chardet
|
||||||
|
, pyyaml
|
||||||
|
, requests
|
||||||
|
, six
|
||||||
|
, semver
|
||||||
|
, pytest
|
||||||
|
, pytestcov
|
||||||
|
, pytestrunner
|
||||||
|
, sphinx
|
||||||
|
, openapi-spec-validator
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "prance";
|
||||||
|
version = "0.15.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "793f96dc8bba73bf4342f57b3570f5e0a94c30e60f0c802a2aaa302759dd8610";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
pytestrunner
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
chardet
|
||||||
|
pyyaml
|
||||||
|
requests
|
||||||
|
six
|
||||||
|
semver
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest
|
||||||
|
pytestcov
|
||||||
|
openapi-spec-validator
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py \
|
||||||
|
--replace "tests_require = dev_require," "tests_require = None,"
|
||||||
|
'';
|
||||||
|
|
||||||
|
# many tests require network connection
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Resolving Swagger/OpenAPI 2.0 and 3.0.0 Parser";
|
||||||
|
homepage = https://github.com/jfinkhaeuser/prance;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.costrouc ];
|
||||||
|
};
|
||||||
|
}
|
@ -4437,6 +4437,8 @@ in {
|
|||||||
|
|
||||||
praw = if isPy3k then callPackage ../development/python-modules/praw { }
|
praw = if isPy3k then callPackage ../development/python-modules/praw { }
|
||||||
else callPackage ../development/python-modules/praw/6.3.nix { };
|
else callPackage ../development/python-modules/praw/6.3.nix { };
|
||||||
|
|
||||||
|
prance = callPackage ../development/python-modules/prance { };
|
||||||
|
|
||||||
prawcore = callPackage ../development/python-modules/prawcore { };
|
prawcore = callPackage ../development/python-modules/prawcore { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user