python3.pkgs.astral: add missing freezegun

This commit is contained in:
Jörg Thalheim 2020-06-19 10:46:05 +01:00
parent ab2c7a29e7
commit 407897c65a
No known key found for this signature in database
GPG key ID: 003F2096411B5F92

View file

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy27, pytz, requests, pytest }:
{ stdenv, buildPythonPackage, fetchPypi, isPy27, pytz, requests, pytest, freezegun }:
buildPythonPackage rec {
pname = "astral";
@ -10,7 +10,7 @@ buildPythonPackage rec {
sha256 = "e41d9967d5c48be421346552f0f4dedad43ff39a83574f5ff2ad32b6627b6fbe";
};
propagatedBuildInputs = [ pytz requests ];
propagatedBuildInputs = [ pytz requests freezegun ];
checkInputs = [ pytest ];
checkPhase = ''