mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-20 03:43:45 +00:00
Merge pull request #213427 from wegank/safe-pysha3-init
python311Packages.safe-pysha3: init at 1.0.3
This commit is contained in:
commit
93b6160490
38
pkgs/development/python-modules/safe-pysha3/default.nix
Normal file
38
pkgs/development/python-modules/safe-pysha3/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, python
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "safe-pysha3";
|
||||
version = "1.0.3";
|
||||
format = "setuptools";
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-Kd+lb9t5ney50BvdfbwPKAb0Ro0sKW+DtuN9hlMZF8I=";
|
||||
};
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
|
||||
${python.interpreter} tests.py
|
||||
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [
|
||||
"sha3"
|
||||
];
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/5afe/pysha3/releases/tag/v${version}";
|
||||
description = "SHA-3 (Keccak) for Python 3.9 - 3.11";
|
||||
homepage = "https://github.com/5afe/pysha3";
|
||||
license = lib.licenses.psfl;
|
||||
maintainers = with lib.maintainers; [ wegank ];
|
||||
};
|
||||
}
|
@ -10186,6 +10186,8 @@ self: super: with self; {
|
||||
|
||||
safe = callPackage ../development/python-modules/safe { };
|
||||
|
||||
safe-pysha3 = callPackage ../development/python-modules/safe-pysha3 { };
|
||||
|
||||
safeio = callPackage ../development/python-modules/safeio { };
|
||||
|
||||
safety = callPackage ../development/python-modules/safety { };
|
||||
|
Loading…
Reference in New Issue
Block a user