mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
Merge pull request #52759 from Izorkin/pythonPackages.pg8000
pythonPackages.pg8000: fix build
This commit is contained in:
commit
0e19695013
@ -2,6 +2,7 @@
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytz
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -13,10 +14,10 @@ buildPythonPackage rec {
|
||||
sha256 = "18192d90409a3037619ef17f1924e3fd9c7169c9c1b3277cec1982116ec2b6de";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pytz ];
|
||||
propagatedBuildInputs = [ pytz six ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/realazthat/aiopg8000;
|
||||
homepage = https://github.com/mfenniak/pg8000;
|
||||
description = "PostgreSQL interface library, for asyncio";
|
||||
maintainers = with maintainers; [ garbas domenkozar ];
|
||||
platforms = platforms.linux;
|
||||
|
Loading…
Reference in New Issue
Block a user