Merge pull request #159930 from r-ryantm/auto-update/python3.10-puremagic

python310Packages.puremagic: 1.11 -> 1.12
This commit is contained in:
Fabian Affolter
2022-02-14 10:10:47 +01:00
committed by GitHub
@@ -1,26 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "puremagic";
version = "1.11";
version = "1.12";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "09d762b9d83c65a83617ee57a3532eb10663f394c1caf81390516c5b1cc0fc6b";
sha256 = "sha256-jAuuwImSExc2KjD6yi6WeMkdXpfOAE3Gp8HGaeBUeDg=";
};
# test data not included on pypi
doCheck = false;
pythonImportsCheck = [ "puremagic" ];
pythonImportsCheck = [
"puremagic"
];
meta = with lib; {
description = "Pure python implementation of magic file detection";
license = licenses.mit;
description = "Implementation of magic file detection";
homepage = "https://github.com/cdgriffith/puremagic";
license = licenses.mit;
maintainers = with maintainers; [ globin ];
};
}