python312Packages.delorean: normalize pname

This commit is contained in:
Felix Buehler 2024-03-16 22:45:43 +01:00
parent ccab9e2120
commit 476d65aa45

View File

@ -9,12 +9,13 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "Delorean"; pname = "delorean";
version = "1.0.0"; version = "1.0.0";
format = "setuptools"; format = "setuptools";
src = fetchPypi { src = fetchPypi {
inherit pname version; pname = "Delorean";
inherit version;
hash = "sha256-/md4bhIzhSOEi+xViKZYxNQl4S1T61HP74cL7I9XYTQ="; hash = "sha256-/md4bhIzhSOEi+xViKZYxNQl4S1T61HP74cL7I9XYTQ=";
}; };