diff --git a/pkgs/development/python-modules/types-awscrt/default.nix b/pkgs/development/python-modules/types-awscrt/default.nix index 97f9f348d7e2..bbf905dcb82c 100644 --- a/pkgs/development/python-modules/types-awscrt/default.nix +++ b/pkgs/development/python-modules/types-awscrt/default.nix @@ -2,24 +2,24 @@ lib, buildPythonPackage, fetchPypi, - poetry-core, pythonOlder, + setuptools, }: buildPythonPackage rec { pname = "types-awscrt"; - version = "0.21.2"; + version = "0.21.5"; pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchPypi { pname = "types_awscrt"; inherit version; - hash = "sha256-hKn09CLsUlwxT99Uwjoec+37zsloVglDyi1Bz65iOzg="; + hash = "sha256-n39H3mh5nLK8ueSG9I13ufWJYrkvukPLiGDacLPFfRs="; }; - build-system = [ poetry-core ]; + build-system = [ setuptools ]; pythonImportsCheck = [ "awscrt-stubs" ];