python310Packages.timetagger: add missing inputs

This commit is contained in:
Fabian Affolter
2023-03-03 23:59:31 +01:00
committed by Martin Weinelt
parent a40941768d
commit 0cf9d7f89e
@@ -1,18 +1,20 @@
{ stdenv
, lib
, buildPythonPackage
, fetchFromGitHub
{ lib
, stdenv
, asgineer
, bcrypt
, buildPythonPackage
, fetchFromGitHub
, iptools
, itemdb
, jinja2
, markdown
, nodejs
, pscript
, pyjwt
, uvicorn
, pytestCheckHook
, pythonOlder
, requests
, uvicorn
}:
buildPythonPackage rec {
@@ -32,6 +34,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
asgineer
bcrypt
iptools
itemdb
jinja2
markdown
@@ -45,6 +48,7 @@ buildPythonPackage rec {
'';
nativeCheckInputs = [
nodejs
pytestCheckHook
requests
];