Commit 37711ec8 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.mortgage: refactor

- enable tests
- add pythonImportsCheck
parent 27851edc
Loading
Loading
Loading
Loading
+21 −11
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
}:

buildPythonPackage rec {
  pname = "mortgage";
  version = "1.0.5";
  format = "setuptools";
  pyproject = true;

  src = fetchPypi {
    inherit version pname;
    sha256 = "18fcb356c631e9cc27fa7019f6ff6021707e34b9ce3a3b7dc815661288709921";
  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "jlumbroso";
    repo = "mortgage";
    rev = "refs/tags/v${version}";
    hash = "sha256-UwSEKfMQqxpcF+7TF/+qD6l8gEO/qDCUklpZz1Nt/Ok=";
  };

  build-system = [
    setuptools
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  doCheck = false; # No tests in sdist

  disabled = pythonOlder "3.5";
  pythonImportsCheck = [
    "mortgage"
  ];

  meta = {
  meta = with lib; {
    description = "Mortgage calculator";
    license = lib.licenses.mit;
    homepage = "https://github.com/jlumbroso/mortgage";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };

}