pythonPackages.pysatochip: init at 0.11.4
This commit is contained in:
parent
a81bd15fcf
commit
5162507599
2 changed files with 26 additions and 0 deletions
24
pkgs/development/python-modules/pysatochip/default.nix
Normal file
24
pkgs/development/python-modules/pysatochip/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, pyscard, ecdsa, pyaes
|
||||
, pythonOlder }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pysatochip";
|
||||
version = "0.11.4";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-Jj/zZIS9aXmZ2xdi29Eun7iRIrIk9oBlrtN9+6opIMo=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyscard ecdsa pyaes ];
|
||||
|
||||
pythonImportsCheck = [ "pysatochip" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Simple python library to communicate with a Satochip hardware wallet";
|
||||
homepage = "https://github.com/Toporin/pysatochip";
|
||||
license = licenses.lgpl3Only;
|
||||
maintainers = with maintainers; [ oxalica ];
|
||||
};
|
||||
}
|
|
@ -6255,6 +6255,8 @@ in {
|
|||
inherit (pkgs) xmlsec;
|
||||
};
|
||||
|
||||
pysatochip = callPackage ../development/python-modules/pysatochip { };
|
||||
|
||||
pysc2 = callPackage ../development/python-modules/pysc2 { };
|
||||
|
||||
pyscard = callPackage ../development/python-modules/pyscard {
|
||||
|
|
Loading…
Reference in a new issue