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

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

28 lines
741 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;
let
cerberus_1_1 = callPackage ./cerberus.nix { };
in 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;
2020-10-15 04:27:07 +00:00
sha256 = "da0365ae9064e30c4a27526fb0d7a802fda5c8651cda6990d17be7ede89a2551";
2018-11-02 08:47:44 +00:00
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ pyyaml six jinja2 cerberus_1_1 ];
2018-11-02 08:47:44 +00:00
nativeCheckInputs = [ unittestCheckHook ];
2018-11-02 08:47:44 +00:00
meta = with lib; {
homepage = "https://pythonhosted.org/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;
};
}