about summary refs log tree commit diff
path: root/pkgs/development/python-modules/bsdiff4
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-03-11 10:06:33 +0100
committerGitHub <noreply@github.com>2022-03-11 10:06:33 +0100
commit7cb333a45e6d957ec1a62d6c8728d5f827617177 (patch)
treefa6990c562ae6d52149ab2170dfcffa798e248f0 /pkgs/development/python-modules/bsdiff4
parenta8ef43453402e9e3ad2591c0227fa55f415b0ac4 (diff)
python3Packages.bsdiff4: add pythonImportsCheck
Diffstat (limited to 'pkgs/development/python-modules/bsdiff4')
-rw-r--r--pkgs/development/python-modules/bsdiff4/default.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/bsdiff4/default.nix b/pkgs/development/python-modules/bsdiff4/default.nix
index f115de5b753ae..5ee2ff0522af0 100644
--- a/pkgs/development/python-modules/bsdiff4/default.nix
+++ b/pkgs/development/python-modules/bsdiff4/default.nix
@@ -1,24 +1,32 @@
 { lib
 , buildPythonPackage
 , fetchPypi
+, pythonOlder
 }:
 
 buildPythonPackage rec {
   pname = "bsdiff4";
   version = "1.2.2";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-GICsP1KmxGrmvMbbEX5Ps1+bDM1a91/U/uaQfQDWmDw=";
+    hash = "sha256-GICsP1KmxGrmvMbbEX5Ps1+bDM1a91/U/uaQfQDWmDw=";
   };
 
+  pythonImportsCheck = [
+    "bsdiff4"
+  ];
+
   checkPhase = ''
     mv bsdiff4 _bsdiff4
     python -c 'import bsdiff4; bsdiff4.test()'
   '';
 
   meta = with lib; {
-    description = "binary diff and patch using the BSDIFF4-format";
+    description = "Binary diff and patch using the BSDIFF4-format";
     homepage = "https://github.com/ilanschnell/bsdiff4";
     license = licenses.bsdProtection;
     maintainers = with maintainers; [ ris ];