Loading pkgs/development/python-modules/encutils/default.nix 0 → 100644 +39 −0 Original line number Diff line number Diff line { buildPythonPackage, chardet, fetchPypi, flit-core, lib, pytestCheckHook, }: buildPythonPackage (finalAttrs: { pname = "encutils"; version = "1.0.0"; pyproject = true; # pyproject.toml on GitHub uses coherent.build as build-system src = fetchPypi { inherit (finalAttrs) pname version; hash = "sha256-OOylrxjOur2L5DwX8UydP7uoPMX3rI46schuJMSyuRo="; }; build-system = [ flit-core ]; dependencies = [ chardet ]; pythonImportsCheck = [ "encutils" ]; nativeCheckInputs = [ pytestCheckHook ]; meta = { description = "Collection of helper functions to detect encodings of text files"; homepage = "https://github.com/coherent-oss/encutils"; license = lib.licenses.lgpl3Plus; maintainers = [ lib.maintainers.dotlambda ]; }; }) pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -5016,6 +5016,8 @@ self: super: with self; { encodec = callPackage ../development/python-modules/encodec { }; encutils = callPackage ../development/python-modules/encutils { }; energyflip-client = callPackage ../development/python-modules/energyflip-client { }; energyflow = callPackage ../development/python-modules/energyflow { }; Loading Loading
pkgs/development/python-modules/encutils/default.nix 0 → 100644 +39 −0 Original line number Diff line number Diff line { buildPythonPackage, chardet, fetchPypi, flit-core, lib, pytestCheckHook, }: buildPythonPackage (finalAttrs: { pname = "encutils"; version = "1.0.0"; pyproject = true; # pyproject.toml on GitHub uses coherent.build as build-system src = fetchPypi { inherit (finalAttrs) pname version; hash = "sha256-OOylrxjOur2L5DwX8UydP7uoPMX3rI46schuJMSyuRo="; }; build-system = [ flit-core ]; dependencies = [ chardet ]; pythonImportsCheck = [ "encutils" ]; nativeCheckInputs = [ pytestCheckHook ]; meta = { description = "Collection of helper functions to detect encodings of text files"; homepage = "https://github.com/coherent-oss/encutils"; license = lib.licenses.lgpl3Plus; maintainers = [ lib.maintainers.dotlambda ]; }; })
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -5016,6 +5016,8 @@ self: super: with self; { encodec = callPackage ../development/python-modules/encodec { }; encutils = callPackage ../development/python-modules/encutils { }; energyflip-client = callPackage ../development/python-modules/energyflip-client { }; energyflow = callPackage ../development/python-modules/energyflow { }; Loading