From 661cdae1b98076d7150ac12542ac075c85edb396 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sat, 7 May 2022 01:19:54 +0200 Subject: python310Packages.python-magic: add SuperSandro2000 as maintainer --- pkgs/development/python-modules/python-magic/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/development/python-modules/python-magic') diff --git a/pkgs/development/python-modules/python-magic/default.nix b/pkgs/development/python-modules/python-magic/default.nix index 381ea6713848..a9fa50a11c69 100644 --- a/pkgs/development/python-modules/python-magic/default.nix +++ b/pkgs/development/python-modules/python-magic/default.nix @@ -36,6 +36,6 @@ buildPythonPackage rec { description = "A python interface to the libmagic file type identification library"; homepage = "https://github.com/ahupp/python-magic"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = with maintainers; [ SuperSandro2000 ]; }; } -- cgit v1.2.3 From fbaef9d855e98cfbb5829f2f36aa7f0ca2d3eb8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 1 Jun 2022 23:37:49 +0200 Subject: python310Packages.python-magic: 0.4.25 -> 0.4.26 --- pkgs/development/python-modules/python-magic/default.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'pkgs/development/python-modules/python-magic') diff --git a/pkgs/development/python-modules/python-magic/default.nix b/pkgs/development/python-modules/python-magic/default.nix index a9fa50a11c69..852b66b44e5f 100644 --- a/pkgs/development/python-modules/python-magic/default.nix +++ b/pkgs/development/python-modules/python-magic/default.nix @@ -5,18 +5,18 @@ , fetchFromGitHub , substituteAll , file -, glibcLocales +, pytestCheckHook }: buildPythonPackage rec { pname = "python-magic"; - version = "0.4.25"; + version = "0.4.26"; src = fetchFromGitHub { owner = "ahupp"; repo = "python-magic"; rev = version; - sha256 = "sha256-h7YQVH5Z7zunT6AdLPBh3TWpxLpZ5unSHDhkVDFOWDI="; + sha256 = "sha256-RcKldMwSRroNZNEl0jwuJG9C+3OIPBzk+CjqkxKK/eY="; }; patches = [ @@ -26,12 +26,14 @@ buildPythonPackage rec { }) ]; - checkInputs = [ glibcLocales ]; - - checkPhase = '' - LC_ALL="en_US.UTF-8" ${python.interpreter} test/test.py + preCheck = '' + export LC_ALL=en_US.UTF-8 ''; + checkInputs = [ + pytestCheckHook + ]; + meta = with lib; { description = "A python interface to the libmagic file type identification library"; homepage = "https://github.com/ahupp/python-magic"; -- cgit v1.2.3 From ef61c5e069409777e5d8226568401df09a94a018 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Thu, 23 Jun 2022 20:05:03 +0200 Subject: python310Packages.python-magic: 0.4.26 -> 0.4.27 --- pkgs/development/python-modules/python-magic/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'pkgs/development/python-modules/python-magic') diff --git a/pkgs/development/python-modules/python-magic/default.nix b/pkgs/development/python-modules/python-magic/default.nix index 852b66b44e5f..3338fb6fa7d0 100644 --- a/pkgs/development/python-modules/python-magic/default.nix +++ b/pkgs/development/python-modules/python-magic/default.nix @@ -1,6 +1,5 @@ { lib , stdenv -, python , buildPythonPackage , fetchFromGitHub , substituteAll @@ -10,13 +9,13 @@ buildPythonPackage rec { pname = "python-magic"; - version = "0.4.26"; + version = "0.4.27"; src = fetchFromGitHub { owner = "ahupp"; repo = "python-magic"; rev = version; - sha256 = "sha256-RcKldMwSRroNZNEl0jwuJG9C+3OIPBzk+CjqkxKK/eY="; + sha256 = "sha256-fZ+5xJ3P0EYK+6rQ8VzXv2zckKfEH5VUdISIR6ybIfQ="; }; patches = [ -- cgit v1.2.3