qualia: init at 1.0.0
tests disabled maintainer srhb
This commit is contained in:
parent
96504cd75c
commit
760710efd1
@ -444,6 +444,7 @@
|
||||
spinus = "Tomasz Czyż <tomasz.czyz@gmail.com>";
|
||||
sprock = "Roger Mason <rmason@mun.ca>";
|
||||
spwhitt = "Spencer Whitt <sw@swhitt.me>";
|
||||
srhb = "Sarah Brofeldt <sbrofeldt@gmail.com>";
|
||||
SShrike = "Severen Redwood <severen@shrike.me>";
|
||||
stephenmw = "Stephen Weinberg <stephen@q5comm.com>";
|
||||
sternenseemann = "Lukas Epple <post@lukasepple.de>";
|
||||
|
21
pkgs/tools/text/mir-qualia/default.nix
Normal file
21
pkgs/tools/text/mir-qualia/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ lib, pythonPackages, fetchurl }:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
name = "mir.qualia-${version}";
|
||||
version = "1.0.0";
|
||||
doCheck = false; # 1.0.0-released pytests are broken
|
||||
|
||||
buildInputs = with pythonPackages; [ pytest ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/m/mir.qualia/mir.qualia-${version}.tar.gz";
|
||||
sha256 = "1g0nwncwk4nq7b7zszqi1q4d2bdga1q50g9nkxigdaq647wqdf7x";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Dynamically enable sections of config files";
|
||||
homepage = https://github.com/darkfeline/mir.qualia;
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [ lib.maintainers.srhb ] ;
|
||||
};
|
||||
}
|
@ -2818,6 +2818,10 @@ in
|
||||
|
||||
minixml = callPackage ../development/libraries/minixml { };
|
||||
|
||||
mir-qualia = callPackage ../tools/text/mir-qualia {
|
||||
pythonPackages = python3Packages;
|
||||
};
|
||||
|
||||
miredo = callPackage ../tools/networking/miredo { };
|
||||
|
||||
mitmproxy = callPackage ../tools/networking/mitmproxy { };
|
||||
|
Loading…
Reference in New Issue
Block a user