summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-01-26 13:48:46 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-02-17 23:21:44 +0100
commit4dc28559924cd13be1a7b6d8b0f7ce526f7c3205 (patch)
treece7f2d49b8a1621fa927433e1493b253176c9fa3
parent405919c6c9eafd5efab75910acddb4f757d9d51c (diff)
downloadnixpkgs-4dc28559924cd13be1a7b6d8b0f7ce526f7c3205.tar
nixpkgs-4dc28559924cd13be1a7b6d8b0f7ce526f7c3205.tar.gz
nixpkgs-4dc28559924cd13be1a7b6d8b0f7ce526f7c3205.tar.bz2
nixpkgs-4dc28559924cd13be1a7b6d8b0f7ce526f7c3205.tar.lz
nixpkgs-4dc28559924cd13be1a7b6d8b0f7ce526f7c3205.tar.xz
nixpkgs-4dc28559924cd13be1a7b6d8b0f7ce526f7c3205.tar.zst
nixpkgs-4dc28559924cd13be1a7b6d8b0f7ce526f7c3205.zip
python310Packages.python-lz4: add changelog to meta
-rw-r--r--pkgs/development/python-modules/lz4/default.nix15
1 files changed, 6 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/lz4/default.nix b/pkgs/development/python-modules/lz4/default.nix
index 863ed3ccc22..041420187a9 100644
--- a/pkgs/development/python-modules/lz4/default.nix
+++ b/pkgs/development/python-modules/lz4/default.nix
@@ -1,16 +1,12 @@
 { lib
 , buildPythonPackage
 , fetchFromGitHub
-, pythonOlder
-, python
-
-# native inputs
 , pkgconfig
-, setuptools-scm
-
-# tests
 , psutil
 , pytestCheckHook
+, python
+, pythonOlder
+, setuptools-scm
 }:
 
 buildPythonPackage rec {
@@ -35,8 +31,8 @@ buildPythonPackage rec {
   '';
 
   nativeBuildInputs = [
-    setuptools-scm
     pkgconfig
+    setuptools-scm
   ];
 
   pythonImportsCheck = [
@@ -47,8 +43,8 @@ buildPythonPackage rec {
   ];
 
   nativeCheckInputs = [
-    pytestCheckHook
     psutil
+    pytestCheckHook
   ];
 
   # for lz4.steam
@@ -63,6 +59,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "LZ4 Bindings for Python";
     homepage = "https://github.com/python-lz4/python-lz4";
+    changelog = "https://github.com/python-lz4/python-lz4/releases/tag/v${version}";
     license = licenses.bsd3;
     maintainers = with maintainers; [ costrouc ];
   };