Loading pkgs/development/python-modules/fnv-hash-fast/default.nix 0 → 100644 +55 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , cython , poetry-core , setuptools , wheel , fnvhash , pytestCheckHook }: buildPythonPackage rec { pname = "fnv-hash-fast"; version = "0.3.1"; format = "pyproject"; src = fetchFromGitHub { owner = "bdraco"; repo = "fnv-hash-fast"; rev = "v${version}"; hash = "sha256-yApMUTO6Kq2YESGMpkU4/FlN57+hX0uQr2fGH7QIdUE="; }; postPatch = '' substituteInPlace pyproject.toml \ --replace "--cov=fnv_hash_fast --cov-report=term-missing:skip-covered" "" ''; nativeBuildInputs = [ cython poetry-core setuptools wheel ]; propagatedBuildInputs = [ fnvhash ]; pythonImportsCheck = [ "fnv_hash_fast" ]; nativeCheckInputs = [ pytestCheckHook ]; meta = with lib; { description = "A fast version of fnv1a"; homepage = "https://github.com/bdraco/fnv-hash-fast"; changelog = "https://github.com/bdraco/fnv-hash-fast/blob/${src.rev}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ hexa ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3691,6 +3691,8 @@ self: super: with self; { fn = callPackage ../development/python-modules/fn { }; fnv-hash-fast = callPackage ../development/python-modules/fnv-hash-fast { }; fnvhash = callPackage ../development/python-modules/fnvhash { }; folium = callPackage ../development/python-modules/folium { }; Loading Loading
pkgs/development/python-modules/fnv-hash-fast/default.nix 0 → 100644 +55 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , cython , poetry-core , setuptools , wheel , fnvhash , pytestCheckHook }: buildPythonPackage rec { pname = "fnv-hash-fast"; version = "0.3.1"; format = "pyproject"; src = fetchFromGitHub { owner = "bdraco"; repo = "fnv-hash-fast"; rev = "v${version}"; hash = "sha256-yApMUTO6Kq2YESGMpkU4/FlN57+hX0uQr2fGH7QIdUE="; }; postPatch = '' substituteInPlace pyproject.toml \ --replace "--cov=fnv_hash_fast --cov-report=term-missing:skip-covered" "" ''; nativeBuildInputs = [ cython poetry-core setuptools wheel ]; propagatedBuildInputs = [ fnvhash ]; pythonImportsCheck = [ "fnv_hash_fast" ]; nativeCheckInputs = [ pytestCheckHook ]; meta = with lib; { description = "A fast version of fnv1a"; homepage = "https://github.com/bdraco/fnv-hash-fast"; changelog = "https://github.com/bdraco/fnv-hash-fast/blob/${src.rev}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ hexa ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3691,6 +3691,8 @@ self: super: with self; { fn = callPackage ../development/python-modules/fn { }; fnv-hash-fast = callPackage ../development/python-modules/fnv-hash-fast { }; fnvhash = callPackage ../development/python-modules/fnvhash { }; folium = callPackage ../development/python-modules/folium { }; Loading