python3Packages.pydes: init at unstable-2019-01-08

This commit is contained in:
Johannes Arnold 2021-06-15 23:40:21 +02:00
parent d76b0940f0
commit a1e75a9ab4
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchFromGitHub }:
buildPythonPackage rec {
pname = "pydes";
version = "unstable-2019-01-08";
src = fetchFromGitHub {
owner = "twhiteman";
repo = "pyDes";
rev = "e988a5ffc9abb8010fc75dba54904d1c5dbe83db";
sha256 = "0sic8wbyk5azb4d4m6zbc96lfqcw8s2pzcv9nric5yqc751613ww";
};
checkPhase = "python test_pydes.py";
pythonImportsCheck = [ "pyDes" ];
meta = with lib; {
description = "A pure python module which implements the DES and Triple-DES encryption algorithms";
homepage = "https://github.com/twhiteman/pyDes";
license = licenses.mit;
maintainers = with maintainers; [ j0hax ];
};
}

View file

@ -5701,6 +5701,8 @@ in {
pydenticon = callPackage ../development/python-modules/pydenticon { };
pydes = callPackage ../development/python-modules/pydes { };
py-desmume = callPackage ../development/python-modules/py-desmume { };
pydexcom = callPackage ../development/python-modules/pydexcom { };