python3Packages.etuples: init at 0.3.4

This commit is contained in:
Etienne JEAN 2022-02-14 15:57:00 +01:00
parent b5ce29f490
commit 0f4273b87a
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, cons
, multipledispatch
, pytestCheckHook
, pytest-html
}:
buildPythonPackage rec {
pname = "etuples";
version = "0.3.4";
src = fetchFromGitHub {
owner = "pythological";
repo = "etuples";
rev = "35d760ceb64ec318f302a6e4d3a4a80feda97a9e";
sha256 = "sha256-CXD8MhsdWYAcG5WDVTT/A2HDtiO1xfQbrwlYVnxXpBU=";
};
propagatedBuildInputs = [
cons
multipledispatch
];
checkInputs = [
pytestCheckHook
pytest-html
];
pytestFlagsArray = [
"--html=testing-report.html"
"--self-contained-html"
];
pythonImportsCheck = [ "etuples" ];
meta = with lib; {
description = "Python S-expression emulation using tuple-like objects";
homepage = "https://github.com/pythological/etuples";
changelog = "https://github.com/pythological/etuples/releases";
license = licenses.asl20;
maintainers = with maintainers; [ Etjean ];
};
}

View File

@ -2655,6 +2655,8 @@ in {
eth-utils = callPackage ../development/python-modules/eth-utils { };
etuples = callPackage ../development/python-modules/etuples { };
et_xmlfile = callPackage ../development/python-modules/et_xmlfile { };
ev3dev2 = callPackage ../development/python-modules/ev3dev2 { };