diff --git a/pkgs/development/python-modules/aesedb/default.nix b/pkgs/development/python-modules/aesedb/default.nix index c976a92b5df9..feae42027e51 100644 --- a/pkgs/development/python-modules/aesedb/default.nix +++ b/pkgs/development/python-modules/aesedb/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "aesedb"; - version = "0.1.7"; + version = "0.1.8"; pyproject = true; disabled = pythonOlder "3.7"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "skelsec"; repo = "aesedb"; tag = version; - hash = "sha256-jT5Aru/BqvJf4HpD418+GrkZ0/g2XcTV3oWSOmo0Sbw="; + hash = "sha256-YoeqxYkohAR6RaQYDXt7T00LCQDSb/o/ddxYRDGP/2s="; }; nativeBuildInputs = [ setuptools ]; diff --git a/pkgs/development/python-modules/unicrypto/default.nix b/pkgs/development/python-modules/unicrypto/default.nix index cfcc15be66cb..774a43c98b91 100644 --- a/pkgs/development/python-modules/unicrypto/default.nix +++ b/pkgs/development/python-modules/unicrypto/default.nix @@ -4,24 +4,24 @@ fetchFromGitHub, pycryptodome, pycryptodomex, - pythonOlder, + setuptools, }: buildPythonPackage rec { pname = "unicrypto"; - version = "0.0.11"; - format = "setuptools"; - - disabled = pythonOlder "3.7"; + version = "0.0.12"; + pyproject = true; src = fetchFromGitHub { owner = "skelsec"; repo = "unicrypto"; tag = version; - hash = "sha256-quMh4yQSqbwZwWTJYxW/4F0k2c2nh82FEiNCSeQzhvo="; + hash = "sha256-RYwovFMalBNDPDEVjQ/8/N7DkOMiyeEQ5ESdgCK8RW8="; }; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ pycryptodome pycryptodomex ]; @@ -34,8 +34,8 @@ buildPythonPackage rec { meta = with lib; { description = "Unified interface for cryptographic libraries"; homepage = "https://github.com/skelsec/unicrypto"; - changelog = "https://github.com/skelsec/unicrypto/releases/tag/${version}"; - license = with licenses; [ mit ]; + changelog = "https://github.com/skelsec/unicrypto/releases/tag/${src.tag}"; + license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }