Skip to content

Commit

Permalink
python312Packages.yarl: 1.13.1 -> 1.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Dec 3, 2024
1 parent ee4033b commit 1de2916
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions pkgs/development/python-modules/yarl/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,29 @@
cython,
expandvars,
setuptools,
hypothesis,
idna,
multidict,
propcache,
pytest-codspeed,
pytest-cov-stub,
pytest-xdist,
pytestCheckHook,
}:

buildPythonPackage rec {
pname = "yarl";
version = "1.13.1";
version = "1.18.0";

disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";

pyproject = true;

src = fetchFromGitHub {
owner = "aio-libs";
repo = "yarl";
rev = "refs/tags/v${version}";
hash = "sha256-I6/c5Q6/SRw8PIW4rPLKhVRVPRIC+n+Cz+UrKn5Pv/0=";
hash = "sha256-GJ8s2IQayaRL4FD8IooSIzjf6BJYrLdwlq/D8TGygmI=";
};

build-system = [
Expand All @@ -37,6 +40,7 @@ buildPythonPackage rec {
dependencies = [
idna
multidict
propcache
];

preCheck = ''
Expand All @@ -45,6 +49,8 @@ buildPythonPackage rec {
'';

nativeCheckInputs = [
hypothesis
pytest-codspeed
pytest-cov-stub
pytest-xdist
pytestCheckHook
Expand Down

0 comments on commit 1de2916

Please sign in to comment.