python3Packages.simple-rlp: init at 0.1.2
This commit is contained in:
parent
926d7dcaf3
commit
323b6dfb62
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/simple-rlp/default.nix
Normal file
23
pkgs/development/python-modules/simple-rlp/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue