pyditz: move to by-name

This commit is contained in:
wxt 2024-10-28 15:07:41 +08:00
parent 474d515b26
commit 938eaf0d91
2 changed files with 5 additions and 11 deletions

View File

@ -1,8 +1,6 @@
{ 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/";

View File

@ -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;