1
0
mirror of https://github.com/kmein/niveum synced 2026-03-20 03:51:07 +01:00

chore: move more to NUR

This commit is contained in:
Kierán Meinhardt
2020-04-09 18:12:45 +02:00
parent ebaff40268
commit 8890b30e5f
13 changed files with 3 additions and 190 deletions

View File

@@ -1,22 +0,0 @@
{ buildPythonPackage, buildPythonApplication, fetchPypi, requests, urwid }:
let
Simperium3 = buildPythonPackage rec {
pname = "Simperium3";
version = "0.1.3";
src = fetchPypi {
inherit pname version;
sha256 = "1j1w4dji39v44l96qq9kbrxpcjkjmika8065gwy8bf847f9fa76p";
};
propagatedBuildInputs = [ requests ];
};
in buildPythonApplication rec {
pname = "sncli";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "18s5a6s2z7k14cbiyfdf98kw92r2hf1xwaavx67dxhadxm18xr4v";
};
propagatedBuildInputs = [ requests urwid Simperium3 ];
}