Commit 938eaf0d authored by wxt's avatar wxt
Browse files

pyditz: move to by-name

parent 474d515b
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
{ lib, pythonPackages, fetchPypi }:
{ lib, python3Packages, fetchPypi }:

with pythonPackages;

buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
  pname = "pyditz";
  version = "0.11";

@@ -10,10 +8,10 @@ buildPythonApplication rec {
    inherit pname version;
    hash = "sha256-2gNlrpBk4wxKJ1JvsNeoAv2lyGUc2mmQ0Xvn7eiaJVE=";
  };
  nativeBuildInputs = [ setuptools-scm ];
  propagatedBuildInputs = [ pyyaml six jinja2 cerberus ];
  nativeBuildInputs = with python3Packages;[ setuptools-scm ];
  propagatedBuildInputs = with python3Packages;[ pyyaml six jinja2 cerberus ];

  nativeCheckInputs = [ unittestCheckHook ];
  nativeCheckInputs = with python3Packages;[ unittestCheckHook ];

  meta = with lib; {
    homepage = "https://pypi.org/project/pyditz/";
+0 −4
Original line number Diff line number Diff line
@@ -11430,10 +11430,6 @@ with pkgs;
  ticktick = callPackage ../applications/office/ticktick { };
  pyditz = callPackage ../applications/misc/pyditz {
    pythonPackages = python3Packages;
  };
  py-spy = darwin.apple_sdk_11_0.callPackage ../development/tools/py-spy {
    # https://github.com/benfred/py-spy/issues/633
    python3 = python311;