mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
efa25157e9
Includes various upstream fixes of the tests, see * https://github.com/Yelp/swagger_spec_validator/pull/117 * https://github.com/Yelp/swagger_spec_validator/pull/121
38 lines
750 B
Nix
38 lines
750 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, pyyaml, jsonschema, six, pytest, mock, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "swagger-spec-validator";
|
|
version = "2.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Yelp";
|
|
repo = "swagger_spec_validator";
|
|
rev = "v" + version;
|
|
sha256 = "0qlkiyncdh7cdyjvnwjpv9i7y75ghwnpyqkkpfaa8hg698na13pw";
|
|
};
|
|
|
|
checkInputs = [
|
|
pytest
|
|
mock
|
|
];
|
|
|
|
checkPhase = ''
|
|
pytest tests
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
pyyaml
|
|
jsonschema
|
|
six
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Yelp/swagger_spec_validator";
|
|
license = licenses.asl20;
|
|
description = "Validation of Swagger specifications";
|
|
maintainers = with maintainers; [ vanschelven ];
|
|
};
|
|
}
|
|
|
|
|