python311Packages.graphene: refactor

- adopt new parameters
- remove unused inputs
This commit is contained in:
natsukium
2024-03-12 18:25:11 +01:00
committed by Martin Weinelt
parent 21f56b624b
commit f37b1f09b3
@@ -2,15 +2,13 @@
, aniso8601
, buildPythonPackage
, fetchFromGitHub
, setuptools
, graphql-core
, graphql-relay
, promise
, py
, pytest-asyncio
, pytest-benchmark
, pytest-mock
, pytestCheckHook
, pythonAtLeast
, pythonOlder
, pytz
, snapshottest
@@ -19,7 +17,7 @@
buildPythonPackage rec {
pname = "graphene";
version = "3.3.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.6";
@@ -30,15 +28,17 @@ buildPythonPackage rec {
hash = "sha256-DGxicCXZp9kW/OFkr0lAWaQ+GaECx+HD8+X4aW63vgQ=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
aniso8601
graphql-core
graphql-relay
];
nativeCheckInputs = [
promise
py
pytestCheckHook
pytest-asyncio
pytest-benchmark