doq: 0.9.1 -> 0.10.0
Diff: https://github.com/heavenshell/py-doq/compare/refs/tags/0.9.1...0.10.0 Changelog: https://github.com/heavenshell/py-doq/releases/tag/refs/tags/0.10.0
This commit is contained in:
parent
03c857c953
commit
4fdaf8708d
1 changed files with 10 additions and 4 deletions
|
@ -5,16 +5,21 @@
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "doq";
|
pname = "doq";
|
||||||
version = "0.9.1";
|
version = "0.10.0";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "heavenshell";
|
owner = "heavenshell";
|
||||||
repo = "py-doq";
|
repo = "py-doq";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-6ff7R/2Jo4jYm1hA70yopjklpKIMWlj7DH9eKxOlfgU=";
|
hash = "sha256-iVu+5o8pZ5OhIzNItWbzUzqC3VQ6HCD7nP5gW/PVAMM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
|
setuptools
|
||||||
|
setuptools-generate
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
jinja2
|
jinja2
|
||||||
parso
|
parso
|
||||||
|
@ -23,7 +28,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
|
|
||||||
nativeCheckInputs = with python3.pkgs; [
|
nativeCheckInputs = with python3.pkgs; [
|
||||||
parameterized
|
parameterized
|
||||||
unittestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "doq" ];
|
pythonImportsCheck = [ "doq" ];
|
||||||
|
@ -34,5 +39,6 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
changelog = "https://github.com/heavenshell/py-doq/releases/tag/${src.rev}";
|
changelog = "https://github.com/heavenshell/py-doq/releases/tag/${src.rev}";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ natsukium ];
|
maintainers = with maintainers; [ natsukium ];
|
||||||
|
mainProgram = "doq";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue