Unverified Commit e1d4c6c4 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python313Packages.cashaddress: fix version date, remove problematic with lib usage (#410853)

parents 5abb38db 853d9a1a
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@

buildPythonPackage rec {
  pname = "cashaddress";
  version = "1.0.6-unstable-2015-05-19";
  version = "1.0.6-unstable-2019-05-15";
  pyproject = true;

  disabled = pythonOlder "3.7";
@@ -27,11 +27,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "cashaddress" ];

  meta = with lib; {
  meta = {
    description = "Python tool for convert bitcoin cash legacy addresses";
    homepage = "https://github.com/oskyk/cashaddress";
    changelog = "https://github.com/oskyk/cashaddress/releases/tag/${version}";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ fab ];
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ fab ];
  };
}