lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.rdflib: 6.2.0 -> 7.0.0

+12 -4
+12 -4
pkgs/development/python-modules/rdflib/default.nix
··· 4 4 , fetchFromGitHub 5 5 , pythonOlder 6 6 7 + # builds 8 + , poetry-core 9 + 7 10 # propagates 8 11 , isodate 9 12 , pyparsing ··· 25 28 26 29 buildPythonPackage rec { 27 30 pname = "rdflib"; 28 - version = "6.2.0"; 29 - format = "setuptools"; 31 + version = "7.0.0"; 32 + format = "pyproject"; 30 33 31 - disabled = pythonOlder "3.7"; 34 + disabled = pythonOlder "3.8"; 32 35 33 36 src = fetchFromGitHub { 34 37 owner = "RDFLib"; 35 38 repo = pname; 36 39 rev = "refs/tags/${version}"; 37 - hash = "sha256-GkqfSyApOFKPIiIYXhgaRZuMawk7PRYmxGDhnRI+Rz0="; 40 + hash = "sha256-VCjvgXMun1Hs+gPeqjzLXbIX1NBQ5aMLz0aWlwsm0iY="; 38 41 }; 42 + 43 + nativeBuildInputs = [ 44 + poetry-core 45 + ]; 39 46 40 47 propagatedBuildInputs = [ 41 48 isodate ··· 76 83 "testGuessFormatForParse" 77 84 "test_infix_owl_example1" 78 85 "test_context" 86 + "test_example" 79 87 "test_guess_format_for_parse" 80 88 "rdflib.extras.infixowl" 81 89 ] ++ lib.optionals stdenv.isDarwin [