forked from mirrors/nixpkgs
python3Packages.base58check: init at 1.0.2
This commit is contained in:
parent
2dedc1eaa4
commit
5bc97cf9b3
36
pkgs/development/python-modules/base58check/default.nix
Normal file
36
pkgs/development/python-modules/base58check/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildPythonPackage
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "base58check";
|
||||
version = "1.0.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "joeblackwaslike";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-Tig6beLRDsXC//x4+t/z2BGaJQWzcP0J+QEKx3D0rhs=";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"base58check"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Implementation of the Base58Check encoding scheme";
|
||||
homepage = "https://github.com/joeblackwaslike/base58check";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -1106,6 +1106,8 @@ in {
|
|||
|
||||
base58 = callPackage ../development/python-modules/base58 { };
|
||||
|
||||
base58check = callPackage ../development/python-modules/base58check { };
|
||||
|
||||
baseline = callPackage ../development/python-modules/baseline { };
|
||||
|
||||
baselines = callPackage ../development/python-modules/baselines { };
|
||||
|
|
Loading…
Reference in a new issue