diff options
| author | Fabian Affolter <fabian@affolter-engineering.ch> | 2025-08-11 00:24:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-11 00:24:05 +0200 |
| commit | 6b2fd58b22f45feff7632758efc6af980c95785a (patch) | |
| tree | 6b4ea82088cb07cea4d266ecaafe233fffc2c01f | |
| parent | gocryptfs: 2.6.0 -> 2.6.1 (#432614) (diff) | |
| parent | python3Packages.nampa: 1.0 -> 1.0-unstable-2024-12-18 (diff) | |
| download | nixpkgs-6b2fd58b22f45feff7632758efc6af980c95785a.tar.gz | |
python3Packages.nampa: 1.0 -> 1.0-unstable-2024-12-18 (#419243)
| -rw-r--r-- | pkgs/development/python-modules/nampa/default.nix | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/nampa/default.nix b/pkgs/development/python-modules/nampa/default.nix index c9f31d7e615d..3b810808eb09 100644 --- a/pkgs/development/python-modules/nampa/default.nix +++ b/pkgs/development/python-modules/nampa/default.nix @@ -2,14 +2,13 @@ lib, buildPythonPackage, fetchFromGitHub, - future, pythonOlder, setuptools, }: buildPythonPackage rec { pname = "nampa"; - version = "1.0"; + version = "1.0-unstable-2024-12-18"; pyproject = true; disabled = pythonOlder "3.8"; @@ -17,20 +16,12 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "thebabush"; repo = "nampa"; - tag = version; - hash = "sha256-ylDthh6fO0jKiYib0bed31Dxt4afiD0Jd5mfRKrsZpE="; + rev = "cb6a63aae64324f57bdc296064bc6aa2b99ff99a"; + hash = "sha256-4NEfrx5cR6Zk713oBRZBe52mrbHKhs1doJFAdjnobig="; }; - postPatch = '' - # https://github.com/thebabush/nampa/pull/13 - substituteInPlace setup.py \ - --replace "0.1.1" "${version}" - ''; - build-system = [ setuptools ]; - dependencies = [ future ]; - # Not used for binaryninja as plugin doCheck = false; @@ -39,7 +30,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python implementation of the FLIRT technology"; homepage = "https://github.com/thebabush/nampa"; - changelog = "https://github.com/thebabush/nampa/releases/tag/${version}"; + changelog = "https://github.com/thebabush/nampa/commits/cb6a63aae64324f57bdc296064bc6aa2b99ff99a/"; license = licenses.lgpl3Only; maintainers = with maintainers; [ fab ]; }; |
