Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 python3Packages,
4 fetchPypi,
5}:
6
7python3Packages.buildPythonApplication rec {
8 pname = "pyditz";
9 version = "0.11";
10 pyproject = true;
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-2gNlrpBk4wxKJ1JvsNeoAv2lyGUc2mmQ0Xvn7eiaJVE=";
15 };
16
17 build-system = with python3Packages; [ setuptools-scm ];
18
19 dependencies = with python3Packages; [
20 pyyaml
21 six
22 jinja2
23 cerberus
24 ];
25
26 meta = {
27 homepage = "https://hg.sr.ht/~zondo/pyditz";
28 description = "Drop-in replacement for the Ditz distributed issue tracker";
29 maintainers = with lib.maintainers; [ ilikeavocadoes ];
30 license = lib.licenses.lgpl2Plus;
31 platforms = lib.platforms.linux;
32 };
33}