Merge pull request #295699 from Stunkymonkey/python-pybrowserid-normalize

python312Packages.pybrowserid: normalize pname
This commit is contained in:
Sandro 2024-03-25 20:21:32 +01:00 committed by GitHub
commit 8c71e6a4e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,11 +2,12 @@
, requests, mock }:
buildPythonPackage rec {
pname = "PyBrowserID";
pname = "pybrowserid";
version = "0.14.0";
src = fetchPypi {
inherit pname version;
pname = "PyBrowserID";
inherit version;
sha256 = "1qvi79kfb8x9kxkm5lw2mp42hm82cpps1xknmsb5ghkwx1lpc8kc";
};
@ -21,4 +22,3 @@ buildPythonPackage rec {
maintainers = with maintainers; [ ];
};
}