python310Packages.littleutils: add changelog to meta
This commit is contained in:
committed by
Martin Weinelt
parent
d5aa5af5f3
commit
a2bc91cd9b
@@ -1,24 +1,32 @@
|
||||
{ buildPythonPackage
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, lib
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "littleutils";
|
||||
version = "0.2.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0vwijrylppmk0nbddqvn527r9cg3zw8d6zk6r58hslry42jf7jp6";
|
||||
hash = "sha256-5srjpCA+Uw1RyWZ+0xD/47GUjyh249aWBbPeS32WkW8=";
|
||||
};
|
||||
|
||||
# This tiny package has no unit tests at all
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "littleutils" ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"littleutils"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Small collection of Python utility functions";
|
||||
homepage = "https://github.com/alexmojaki/littleutils";
|
||||
changelog = "https://github.com/alexmojaki/littleutils/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jluttine ];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user