nixpkgs/pkgs/applications/misc/pyditz/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
666 B
Nix
Raw Normal View History

2023-05-25 18:37:59 +00:00
{ lib, pythonPackages, fetchPypi }:
2018-11-02 08:47:44 +00:00
with pythonPackages;
2023-08-09 02:36:35 +00:00
buildPythonApplication rec {
2018-11-02 08:47:44 +00:00
pname = "pyditz";
2020-10-15 04:27:07 +00:00
version = "0.11";
2018-11-02 08:47:44 +00:00
src = fetchPypi {
2018-11-02 08:47:44 +00:00
inherit pname version;
2023-08-09 02:36:35 +00:00
hash = "sha256-2gNlrpBk4wxKJ1JvsNeoAv2lyGUc2mmQ0Xvn7eiaJVE=";
2018-11-02 08:47:44 +00:00
};
nativeBuildInputs = [ setuptools-scm ];
2023-08-09 02:36:35 +00:00
propagatedBuildInputs = [ pyyaml six jinja2 cerberus ];
2018-11-02 08:47:44 +00:00
nativeCheckInputs = [ unittestCheckHook ];
2018-11-02 08:47:44 +00:00
meta = with lib; {
2023-08-09 02:36:35 +00:00
homepage = "https://pypi.org/project/pyditz/";
2018-11-02 08:47:44 +00:00
description = "Drop-in replacement for the Ditz distributed issue tracker";
maintainers = [ maintainers.ilikeavocadoes ];
license = licenses.lgpl2;
platforms = platforms.linux;
};
}