mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
python310Packages.prayer-times-calculator: add changelog to meta
This commit is contained in:
parent
feac9563b4
commit
173d592454
@ -8,13 +8,15 @@
|
|||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "prayer-times-calculator";
|
pname = "prayer-times-calculator";
|
||||||
version = "0.0.7";
|
version = "0.0.7";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "uchagani";
|
owner = "uchagani";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
sha256 = "sha256-fIfv10oi5Lv1dj5Y5CYI94/UdWG3bAY/ENCiMTkO0RE=";
|
hash = "sha256-fIfv10oi5Lv1dj5Y5CYI94/UdWG3bAY/ENCiMTkO0RE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
@ -24,11 +26,14 @@ buildPythonPackage rec {
|
|||||||
# Project has no tests
|
# Project has no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
pythonImportsCheck = [ "prayer_times_calculator" ];
|
pythonImportsCheck = [
|
||||||
|
"prayer_times_calculator"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python client for the Prayer Times API";
|
description = "Python client for the Prayer Times API";
|
||||||
homepage = "https://github.com/uchagani/prayer-times-calculator";
|
homepage = "https://github.com/uchagani/prayer-times-calculator";
|
||||||
|
changelog = "https://github.com/uchagani/prayer-times-calculator/releases/tag/${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ fab ];
|
maintainers = with maintainers; [ fab ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user