Loading pkgs/development/python-modules/pytest-mockito/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , pytest , mockito , pytestCheckHook }: buildPythonPackage rec { pname = "pytest-mockito"; version = "0.0.4"; format = "setuptools"; src = fetchFromGitHub { owner = "kaste"; repo = "pytest-mockito"; rev = version; hash = "sha256-vY/i1YV1lo4mZvnxsXBOyaq31YTiF0BY6PTVwdVX10I="; }; buildInputs = [ pytest ]; propagatedBuildInputs = [ mockito ]; checkInputs = [ pytestCheckHook ]; meta = { description = "Base fixtures for mockito"; homepage = "https://github.com/kaste/pytest-mockito"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ dotlambda ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -7059,6 +7059,8 @@ self: super: with self; { pysyncthru = callPackage ../development/python-modules/pysyncthru { }; pytest-mockito = callPackage ../development/python-modules/pytest-mockito { }; python-codon-tables = callPackage ../development/python-modules/python-codon-tables { }; python-crfsuite = callPackage ../development/python-modules/python-crfsuite { }; Loading Loading
pkgs/development/python-modules/pytest-mockito/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , pytest , mockito , pytestCheckHook }: buildPythonPackage rec { pname = "pytest-mockito"; version = "0.0.4"; format = "setuptools"; src = fetchFromGitHub { owner = "kaste"; repo = "pytest-mockito"; rev = version; hash = "sha256-vY/i1YV1lo4mZvnxsXBOyaq31YTiF0BY6PTVwdVX10I="; }; buildInputs = [ pytest ]; propagatedBuildInputs = [ mockito ]; checkInputs = [ pytestCheckHook ]; meta = { description = "Base fixtures for mockito"; homepage = "https://github.com/kaste/pytest-mockito"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ dotlambda ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -7059,6 +7059,8 @@ self: super: with self; { pysyncthru = callPackage ../development/python-modules/pysyncthru { }; pytest-mockito = callPackage ../development/python-modules/pytest-mockito { }; python-codon-tables = callPackage ../development/python-modules/python-codon-tables { }; python-crfsuite = callPackage ../development/python-modules/python-crfsuite { }; Loading