Loading pkgs/development/python-modules/ohmepy/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { lib, aiohttp, buildPythonPackage, fetchFromGitHub, pythonOlder, setuptools, }: buildPythonPackage rec { pname = "ohmepy"; version = "1.2.3"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "dan-r"; repo = "ohmepy"; rev = "refs/tags/v${version}"; hash = "sha256-hCwaB6YXtNHCNOyjRxDSonBdTpKqX9GmLwFMvrY9UpI="; }; build-system = [ setuptools ]; dependencies = [ aiohttp ]; pythonImportsCheck = [ "ohme" ]; # Module has no tests doCheck = false; meta = { description = "Module for interacting with the Ohme API"; homepage = "https://github.com/dan-r/ohmepy"; changelog = "https://github.com/dan-r/ohmepy/releases/tag/v${version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -4879,6 +4879,8 @@ self: super: with self; { oelint-parser = callPackage ../development/python-modules/oelint-parser { }; ohmepy = callPackage ../development/python-modules/ohmepy { }; openstep-parser = callPackage ../development/python-modules/openstep-parser { }; openstep-plist = callPackage ../development/python-modules/openstep-plist { }; Loading Loading
pkgs/development/python-modules/ohmepy/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { lib, aiohttp, buildPythonPackage, fetchFromGitHub, pythonOlder, setuptools, }: buildPythonPackage rec { pname = "ohmepy"; version = "1.2.3"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "dan-r"; repo = "ohmepy"; rev = "refs/tags/v${version}"; hash = "sha256-hCwaB6YXtNHCNOyjRxDSonBdTpKqX9GmLwFMvrY9UpI="; }; build-system = [ setuptools ]; dependencies = [ aiohttp ]; pythonImportsCheck = [ "ohme" ]; # Module has no tests doCheck = false; meta = { description = "Module for interacting with the Ohme API"; homepage = "https://github.com/dan-r/ohmepy"; changelog = "https://github.com/dan-r/ohmepy/releases/tag/v${version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -4879,6 +4879,8 @@ self: super: with self; { oelint-parser = callPackage ../development/python-modules/oelint-parser { }; ohmepy = callPackage ../development/python-modules/ohmepy { }; openstep-parser = callPackage ../development/python-modules/openstep-parser { }; openstep-plist = callPackage ../development/python-modules/openstep-plist { }; Loading