3
0
Fork 0
forked from mirrors/nixpkgs

python310Packages.pyhumps: 3.7.2 -> 3.7.3

This commit is contained in:
Fabian Affolter 2022-08-26 14:33:18 +02:00
parent 8ab89c7196
commit 4afb5a24dc

View file

@ -1,7 +1,6 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, poetry-core
, pytestCheckHook
, pythonOlder
@ -9,7 +8,7 @@
buildPythonPackage rec {
pname = "pyhumps";
version = "3.7.2";
version = "3.7.3";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -18,7 +17,7 @@ buildPythonPackage rec {
owner = "nficano";
repo = "humps";
rev = "v${version}";
hash = "sha256-nxiNYBpbX2GfzYj+DdU89bsyEHDnrKZIAGZY7ut/P6I=";
hash = "sha256-7jkwf4qGQ+AD4/hOrEe/oAPY+gnSySUVBWFf70rU7xc=";
};
nativeBuildInputs = [
@ -29,15 +28,6 @@ buildPythonPackage rec {
pytestCheckHook
];
patches = [
# Fix naming, https://github.com/nficano/humps/pull/246
(fetchpatch {
name = "fix-naming.patch";
url = "https://github.com/nficano/humps/commit/8c7de2040e3610760c4df604cdbe849a9b7f0074.patch";
sha256 = "sha256-dNgPAOxPdCwDteobP4G2/GiVj/Xg+m7u/Or92vo8ilk=";
})
];
pythonImportsCheck = [
"humps"
];