pythonPackages.pysatochip: init at 0.11.4
This commit is contained in:
parent
a81bd15fcf
commit
5162507599
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;
|
inherit (pkgs) xmlsec;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pysatochip = callPackage ../development/python-modules/pysatochip { };
|
||||||
|
|
||||||
pysc2 = callPackage ../development/python-modules/pysc2 { };
|
pysc2 = callPackage ../development/python-modules/pysc2 { };
|
||||||
|
|
||||||
pyscard = callPackage ../development/python-modules/pyscard {
|
pyscard = callPackage ../development/python-modules/pyscard {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user