python3Packages.py3rijndael: init at 0.3.3
This commit is contained in:
parent
3957a12e9d
commit
7e2881905c
30
pkgs/development/python-modules/py3rijndael/default.nix
Normal file
30
pkgs/development/python-modules/py3rijndael/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
let
|
||||
pname = "py3rijndael";
|
||||
version = "0.3.3";
|
||||
in
|
||||
buildPythonPackage {
|
||||
inherit pname version;
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-tmVaPr/zoQVA6u0EnoeI7qOsk9a3GzpqwrACJLvs6ag=";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Rijndael algorithm library";
|
||||
homepage = "https://github.com/meyt/py3rijndael";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
}
|
@ -6679,6 +6679,8 @@ in {
|
||||
|
||||
py3exiv2 = callPackage ../development/python-modules/py3exiv2 { };
|
||||
|
||||
py3rijndael = callPackage ../development/python-modules/py3rijndael { };
|
||||
|
||||
py3status = callPackage ../development/python-modules/py3status { };
|
||||
|
||||
py3to2 = callPackage ../development/python-modules/3to2 { };
|
||||
|
Loading…
Reference in New Issue
Block a user