pyrseas: 0.8.0 -> 0.9.1

This commit is contained in:
Aaron Jheng 2022-10-22 02:35:20 +00:00
parent 0b8181e264
commit f3281e08c2
No known key found for this signature in database
GPG key ID: F6A547A869D050A3

View file

@ -1,41 +1,45 @@
{ lib, python2Packages, fetchFromGitHub }:
{ lib, python3Packages, fetchFromGitHub }:
let
pgdbconn = python2Packages.buildPythonPackage rec {
pgdbconn = python3Packages.buildPythonPackage rec {
pname = "pgdbconn";
version = "0.8.0";
src = fetchFromGitHub {
owner = "perseas";
repo = "pgdbconn";
rev = "v${version}";
sha256 = "09r4idk5kmqi3yig7ip61r6js8blnmac5n4q32cdcbp1rcwzdn6z";
};
# The tests are impure (they try to access a PostgreSQL server)
doCheck = false;
propagatedBuildInputs = [
python2Packages.psycopg2
python2Packages.pytest
];
propagatedBuildInputs = with python3Packages; [ psycopg2 pytest ];
};
in
python2Packages.buildPythonApplication {
python3Packages.buildPythonApplication rec {
pname = "pyrseas";
version = "0.8.0";
version = "0.9.1";
src = fetchFromGitHub {
owner = "perseas";
repo = "Pyrseas";
rev = "2e9be763e61168cf20d28bd69010dc5875bd7b97";
sha256 = "1h9vahplqh0rzqjsdq64qqar6hj1bpbc6nl1pqwwgca56385br8r";
rev = version;
sha256 = "sha256-+MxnxvbLMxK1Ak+qKpKe3GHbzzC+XHO0eR7rl4ON9H4=";
};
# The tests are impure (they try to access a PostgreSQL server)
doCheck = false;
propagatedBuildInputs = [
python2Packages.psycopg2
python2Packages.pytest
python2Packages.pyyaml
propagatedBuildInputs = with python3Packages; [
psycopg2
pytest
pyyaml
pgdbconn
];
# The tests are impure (they try to access a PostgreSQL server)
doCheck = false;
meta = {
description = "A declarative language to describe PostgreSQL databases";
homepage = "https://perseas.github.io/";