Merge pull request #295706 from Stunkymonkey/python-heapdict-normalize

python312Packages.heapdict: normalize pname
This commit is contained in:
Sandro 2024-03-25 21:31:50 +01:00 committed by GitHub
commit ac6026f048
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -1,11 +1,12 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k }:
buildPythonPackage rec {
pname = "HeapDict";
pname = "heapdict";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
pname = "HeapDict";
inherit version;
sha256 = "8495f57b3e03d8e46d5f1b2cc62ca881aca392fd5cc048dc0aa2e1a6d23ecdb6";
};