Commit 49e5fbba authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python310Packages.fe25519: 1.2.0 -> 1.3.0

parent 6ce9c9ad
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -4,21 +4,20 @@
, fetchPypi
, fountains
, parts
, nose
, pytestCheckHook
, pythonOlder
}:

buildPythonPackage rec {
  pname = "fe25519";
  version = "1.2.0";
  format = "setuptools";
  version = "1.3.0";
  format = "pyproject";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-Hzdt8932WonJAaQPtL346JFPqxFXkNW4XQvbQlSoJJE=";
    hash = "sha256-/grXAiWERDeTCWgFnNC1Ok8D5I9MBlwd1501TW0yK5c=";
  };

  propagatedBuildInputs = [
@@ -28,13 +27,12 @@ buildPythonPackage rec {
  ];

  checkInputs = [
    nose
    pytestCheckHook
  ];

  postPatch = ''
    substituteInPlace setup.cfg \
      --replace " --cov=fe25519 --cov-report term-missing" ""
    substituteInPlace pyproject.toml \
      --replace "--doctest-modules --ignore=docs --cov=fe25519 --cov-report term-missing" ""
  '';

  pythonImportsCheck = [