about summary refs log tree commit diff
path: root/pkgs/development/python-modules/itemadapter
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-08-15 03:00:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2021-08-15 03:00:00 -0500
commit5e99c1c98fa3087950687050dfa6beda3f5344d2 (patch)
treefca7cec0153949e44f37af9fe6f8642519d4be3d /pkgs/development/python-modules/itemadapter
parent62e97c51a641c88498a5c24df4a00610156f2738 (diff)
python39Packages.itemadapter: 0.2.0 -> 0.3.0
https://github.com/scrapy/itemadapter/releases/tag/v0.3.0
Diffstat (limited to 'pkgs/development/python-modules/itemadapter')
-rw-r--r--pkgs/development/python-modules/itemadapter/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/itemadapter/default.nix b/pkgs/development/python-modules/itemadapter/default.nix
index e1efb9aa673f7..d50ad3a78a46c 100644
--- a/pkgs/development/python-modules/itemadapter/default.nix
+++ b/pkgs/development/python-modules/itemadapter/default.nix
@@ -2,13 +2,13 @@
 
 buildPythonPackage rec {
   pname = "itemadapter";
-  version = "0.2.0";
+  version = "0.3.0";
 
   disabled = isPy27;
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "cb7aaa577fefe2aa6f229ccf4d058e05f44e0178a98c8fb70ee4d95acfabb423";
+    sha256 = "ab2651ba20f5f6d0e15f041deba4c13ffc59270def2bd01518d13e94c4cd27d1";
   };
 
   doCheck = false; # infinite recursion with Scrapy
@@ -18,6 +18,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Common interface for data container classes";
     homepage = "https://github.com/scrapy/itemadapter";
+    changelog = "https://github.com/scrapy/itemadapter/raw/v${version}/Changelog.md";
     license = licenses.bsd3;
     maintainers = [ maintainers.marsam ];
   };