mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
pythonPackages.pycryptodomex: init at 3.4.5
This commit is contained in:
parent
6d9ec9efcf
commit
4fe7f3e561
18
pkgs/development/python-modules/pycryptodomex/default.nix
Normal file
18
pkgs/development/python-modules/pycryptodomex/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ lib, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pycryptodomex";
|
||||
name = "${pname}-${version}";
|
||||
version = "3.4.5";
|
||||
|
||||
meta = {
|
||||
description = "A self-contained cryptographic library for Python";
|
||||
homepage = https://www.pycryptodome.org;
|
||||
license = lib.licenses.bsd2;
|
||||
};
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1n5w5ls5syapmb39kavqgz2sa9pinzx4c9dvwa2147gj0hkh87wj";
|
||||
};
|
||||
}
|
@ -225,6 +225,8 @@ in {
|
||||
|
||||
pycryptodome = callPackage ../development/python-modules/pycryptodome { };
|
||||
|
||||
pycryptodomex = callPackage ../development/python-modules/pycryptodomex { };
|
||||
|
||||
PyChromecast = callPackage ../development/python-modules/pychromecast {
|
||||
protobuf = self.protobuf3_2;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user