lol

python310Packages.delorean: Fix build

Propagate missing pytz dependency.

Also set explicit format, use hash for src fetcher.

+13 -3
+13 -3
pkgs/development/python-modules/delorean/default.nix
··· 4 4 , babel 5 5 , humanize 6 6 , python-dateutil 7 + , pytz 7 8 , tzlocal 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "Delorean"; 12 13 version = "1.0.0"; 14 + format = "setuptools"; 13 15 14 16 src = fetchPypi { 15 17 inherit pname version; 16 - sha256 = "0d31ay7yq2w7xz7m3ssk5phjbm64b2k8hmgcif22719k29p7hrzy"; 18 + hash = "sha256-/md4bhIzhSOEi+xViKZYxNQl4S1T61HP74cL7I9XYTQ="; 17 19 }; 18 20 19 - propagatedBuildInputs = [ babel humanize python-dateutil tzlocal ]; 21 + propagatedBuildInputs = [ 22 + babel 23 + humanize 24 + python-dateutil 25 + pytz 26 + tzlocal 27 + ]; 20 28 21 - pythonImportsCheck = [ "delorean" ]; 29 + pythonImportsCheck = [ 30 + "delorean" 31 + ]; 22 32 23 33 # test data not included 24 34 doCheck = false;