Merge pull request #297021 from Stunkymonkey/python-coapthon3-normalize

python312Packages.coapthon3: normalize pname
This commit is contained in:
Felix Bühler 2024-03-18 23:35:26 +01:00 committed by GitHub
commit fbb5e309d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,13 +1,13 @@
{ buildPythonPackage, cachetools, fetchFromGitHub, isPy27, lib }:
buildPythonPackage rec {
pname = "CoAPthon3";
pname = "coapthon3";
version = "1.0.2";
disabled = isPy27;
src = fetchFromGitHub {
owner = "Tanganelli";
repo = pname;
repo = "CoAPthon3";
rev = version;
hash = "sha256-9QApoPUu3XFZY/lgjAsf5r2StFiRtUd1UXWDrzYUh6w=";
};