mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
python3Packages.dissononce: init at 0.34.3
This commit is contained in:
parent
ca7272d199
commit
d170246aae
26
pkgs/development/python-modules/dissononce/default.nix
Normal file
26
pkgs/development/python-modules/dissononce/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ buildPythonPackage, fetchFromGitHub, lib, pytest, cryptography, transitions }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dissononce";
|
||||
version = "0.34.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tgalal";
|
||||
repo = "dissononce";
|
||||
rev = version;
|
||||
sha256 = "0hn64qfr0d5npmza6rjyxwwp12k2z2y1ma40zpl104ghac6g3mbs";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
checkPhase = ''
|
||||
HOME=$(mktemp -d) py.test tests/
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ cryptography transitions ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://pypi.org/project/dissononce/";
|
||||
license = licenses.mit;
|
||||
description = "A python implementation for Noise Protocol Framework";
|
||||
};
|
||||
}
|
|
@ -6383,6 +6383,8 @@ in {
|
|||
|
||||
diskcache = callPackage ../development/python-modules/diskcache { };
|
||||
|
||||
dissononce = callPackage ../development/python-modules/dissononce { };
|
||||
|
||||
distro = callPackage ../development/python-modules/distro { };
|
||||
|
||||
bz2file = callPackage ../development/python-modules/bz2file { };
|
||||
|
|
Loading…
Reference in a new issue