Merge pull request #177149 from fabaff/unicrypto-bump

python310Packages.unicrypto: 0.0.5 -> 0.0.7
This commit is contained in:
Fabian Affolter 2022-06-10 19:38:53 +02:00 committed by GitHub
commit f8e212aaab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,23 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
, pycryptodome
, pycryptodomex
, pythonOlder
}:
buildPythonPackage rec {
pname = "unicrypto";
version = "0.0.5";
version = "0.0.7";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-aSQPJgSTNGhh5jlpfi/aJF8UZWx98grm2eaxuzassp4=";
hash = "sha256-vGapqRrXkcQJK8plFSup2UmBhlRnFkeLPhXwBtgQyOs=";
};
propagatedBuildInputs = [
pycryptodome
pycryptodomex
];