python3Packages.graphql-core: 3.1.3 -> 3.1.4
This commit is contained in:
parent
61a31ad3d6
commit
d1af4bf97e
|
@ -1,27 +1,21 @@
|
||||||
{ buildPythonPackage
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, lib
|
|
||||||
, pythonOlder
|
|
||||||
|
|
||||||
, coveralls
|
|
||||||
, promise
|
|
||||||
, pytestCheckHook
|
|
||||||
, pytest-benchmark
|
, pytest-benchmark
|
||||||
, pytest-mock
|
, pytestCheckHook
|
||||||
, rx
|
, pythonOlder
|
||||||
, six
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "graphql-core";
|
pname = "graphql-core";
|
||||||
version = "3.1.3";
|
version = "3.1.4";
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "graphql-python";
|
owner = "graphql-python";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0qy1i6vffwad74ymdsh1qjf5b6ph4z0vyxzkkc6yppwczhzmi1ps";
|
sha256 = "sha256-lamV5Rd37WvFBJ+zJUb+UhqxoNUrRhoMJx1NodbQUjs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
|
@ -29,12 +23,12 @@ buildPythonPackage rec {
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "graphql" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Port of graphql-js to Python";
|
description = "Port of graphql-js to Python";
|
||||||
homepage = "https://github.com/graphql-python/graphql-core";
|
homepage = "https://github.com/graphql-python/graphql-core";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [
|
maintainers = with maintainers; [ kamadorueda ];
|
||||||
kamadorueda
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue