python3Packages.simple-rlp: init at 0.1.2

This commit is contained in:
Pavol Rusnak 2022-06-30 20:34:09 +02:00
parent 926d7dcaf3
commit 323b6dfb62
No known key found for this signature in database
GPG key ID: 91F3B339B9A02A3D
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "simple-rlp";
version = "0.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "5c4a9c58f1b742f7fa8af0fe4ea6ff9fb02294ae041912f771570dfaf339d2b9";
};
pythonImportsCheck = [ "rlp" ];
meta = with lib; {
description = "Simple RLP (Recursive Length Prefix)";
homepage = "https://github.com/SamuelHaidu/simple-rlp";
license = licenses.mit;
maintainers = with maintainers; [ prusnak ];
};
}

View file

@ -9738,6 +9738,8 @@ in {
simple-rest-client = callPackage ../development/python-modules/simple-rest-client { };
simple-rlp = callPackage ../development/python-modules/simple-rlp { };
simple-salesforce = callPackage ../development/python-modules/simple-salesforce { };
simple-websocket-server = callPackage ../development/python-modules/simple-websocket-server { };