Merge pull request #296722 from Stunkymonkey/python-pymeeus-normalize

python312Packages.pymeeus: normalize pname
This commit is contained in:
Sandro 2024-03-25 21:33:28 +01:00 committed by GitHub
commit 21890e01a3
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, pytest }:
buildPythonPackage rec {
pname = "PyMeeus";
pname = "pymeeus";
version = "0.5.12";
src = fetchPypi {
inherit pname version;
pname = "PyMeeus";
inherit version;
hash = "sha256-VI9xhr2LlsvAac9kmo6ON33OSax0SGcJhJ/mOpnK1oQ=";
};