pyditz: move to by-name
This commit is contained in:
parent
474d515b26
commit
938eaf0d91
@ -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/";
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user