1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

python3Packages.psycopg2-binary: Fix pname spelling

This commit is contained in:
adisbladis 2024-08-30 15:22:20 +12:00
parent 60d213767f
commit 93ff3f6b76
2 changed files with 2 additions and 2 deletions

View file

@ -368,7 +368,7 @@ In nixpkgs this is used to package Python packages with split binary/source dist
```nix
mkPythonMetaPackage {
pname = "pscycopg2-binary";
pname = "psycopg2-binary";
inherit (psycopg2) optional-dependencies version;
dependencies = [ psycopg2 ];
meta = {

View file

@ -3,7 +3,7 @@
psycopg2,
}:
mkPythonMetaPackage {
pname = "pscycopg2-binary";
pname = "psycopg2-binary";
inherit (psycopg2) version;
dependencies = [ psycopg2 ];
optional-dependencies = psycopg2.optional-dependencies or { };