python3Packages.import-expression: 1.1.4 -> 1.1.5

This commit is contained in:
StarrFox
2024-05-25 21:29:40 -05:00
parent 7e128e8eb5
commit ea95a42ccd
@@ -1,7 +1,7 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchPypi,
fetchpatch,
pytestCheckHook,
astunparse,
@@ -9,23 +9,15 @@
}:
buildPythonPackage rec {
pname = "import-expression";
version = "1.1.4";
version = "1.1.5";
pyproject = true;
src = fetchFromGitHub {
owner = "ioistired";
repo = "import-expression-parser";
rev = "refs/tags/v${version}";
hash = "sha256-mll2NePB7fthzltLOk6D9BgaDpH6GaW4psqcGun/0qM=";
src = fetchPypi {
inherit version;
pname = "import_expression";
hash = "sha256-mVlYj8/I3LFEoHJRds/vbCjH2x/C1oNiUCXmh1FtQME=";
};
patches = [
(fetchpatch {
url = "https://github.com/ioistired/import-expression-parser/commit/3daf968c3163b64685aa529740e132f0df5ab262.patch";
hash = "sha256-2Ubv3onor2D26udZbDDMb3iNLopEIRnIcO/X6WUVmJU=";
})
];
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ astunparse ];
nativeCheckInputs = [ pytestCheckHook ];