Merge pull request #88683 from flokli/lieer-1.2

lieer: 1.1 -> 1.2
This commit is contained in:
Florian Klink 2020-05-24 17:50:10 +02:00 committed by GitHub
commit 34b39335f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,12 @@
{ stdenv, fetchFromGitHub, python3Packages }: { stdenv, python3Packages }:
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "lieer"; pname = "lieer";
version = "1.1"; version = "1.2";
src = fetchFromGitHub { src = python3Packages.fetchPypi {
owner = "gauteh"; inherit pname version;
repo = "lieer"; sha256 = "1cz0zi85sm3ffbrfn3nap3ad9krfwb1a9apfn0cb6fp2w0kcqrda";
rev = "v${version}";
sha256 = "19jx3sm925nrzl26km1bxbp6y5gk1mzwadd79vip2jl70b3xk9f8";
}; };
propagatedBuildInputs = with python3Packages; [ propagatedBuildInputs = with python3Packages; [
@ -30,6 +28,6 @@ python3Packages.buildPythonApplication rec {
homepage = "https://lieer.gaute.vetsj.com/"; homepage = "https://lieer.gaute.vetsj.com/";
repositories.git = "https://github.com/gauteh/lieer.git"; repositories.git = "https://github.com/gauteh/lieer.git";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ kaiha ]; maintainers = with maintainers; [ flokli kaiha ];
}; };
} }