Commit 9eb38166 authored by emaryn's avatar emaryn
Browse files

pytr: 0.3.1 -> 0.4.1

parent 1fcc0d97
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -8,19 +8,19 @@

python3Packages.buildPythonApplication rec {
  pname = "pytr";
  version = "0.3.1";
  version = "0.4.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pytr-org";
    repo = "pytr";
    tag = "v${version}";
    hash = "sha256-OFONjJXKkfb6+bQx5fhsadjm9WG62FISznnWL9IEY7I=";
    hash = "sha256-uWG8q6H6q54v3Iq5LOkr7zi5rds+y13O0ai9R9QySdI=";
  };

  build-system = with python3Packages; [
    babel
    setuptools
    hatchling
    hatch-babel
  ];

  dependencies = with python3Packages; [
@@ -46,10 +46,12 @@ python3Packages.buildPythonApplication rec {

  nativeCheckInputs = [ versionCheckHook ];

  versionCheckProgramArg = "--version";

  pythonImportsCheck = [ "pytr" ];

  meta = {
    changelog = "https://github.com/pytr-org/pytr/releases/tag/v${version}";
    changelog = "https://github.com/pytr-org/pytr/releases/tag/${src.tag}";
    description = "Use TradeRepublic in terminal and mass download all documents";
    homepage = "https://github.com/pytr-org/pytr";
    license = lib.licenses.mit;