Unverified Commit e639b00e authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.aiosql: 13.4 -> 14.1 (#469261)

parents 49c4df60 2a0daa50
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -3,7 +3,9 @@
  buildPythonPackage,
  fetchFromGitHub,
  pg8000,
  psycopg,
  pytest-asyncio,
  pytest-postgresql,
  pytestCheckHook,
  pythonOlder,
  setuptools,
@@ -14,21 +16,19 @@

buildPythonPackage rec {
  pname = "aiosql";
  version = "13.4";
  version = "14.1";
  pyproject = true;

  disabled = pythonOlder "3.8";

  outputs = [
    "doc"
    "out"
    "doc"
  ];

  src = fetchFromGitHub {
    owner = "nackjicholson";
    repo = "aiosql";
    tag = version;
    hash = "sha256-a3pRzcDMXdaDs0ub6k5bPRwnk+RCbxZ7ceIt8/fMSPg=";
    hash = "sha256-BNsjVVyYRfp3sNdzQwHy9nQveP2AHfXGK10DLybat9I=";
  };

  sphinxRoot = "docs/source";
@@ -40,10 +40,11 @@ buildPythonPackage rec {
    sphinxHook
  ];

  propagatedBuildInputs = [ pg8000 ];

  nativeCheckInputs = [
    pg8000
    psycopg
    pytest-asyncio
    pytest-postgresql
    pytestCheckHook
  ];