python.pkgs.mygpoclient: fix expression

This commit is contained in:
Frederik Rietdijk 2018-01-01 11:47:34 +01:00
parent 2ed7dda500
commit e6dd8d43b8

View File

@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, buildPythonPackage, nose, minimock }: { stdenv, fetchFromGitHub, buildPythonPackage, nose, minimock }:
buildPythonPackage rec { buildPythonPackage rec {
name = "mygpoclient-${version}"; pname = "mypgoclient";
version = "1.8"; version = "1.8";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -11,7 +11,7 @@ buildPythonPackage rec {
sha256 = "0aa28wc55x3rxa7clwfv5v5500ffyaq0vkxaa3v01y1r93dxkdvp"; sha256 = "0aa28wc55x3rxa7clwfv5v5500ffyaq0vkxaa3v01y1r93dxkdvp";
}; };
buildInputs = [ nose minimock ]; checkInputs = [ nose minimock ];
checkPhase = '' checkPhase = ''
nosetests nosetests
@ -25,7 +25,6 @@ buildPythonPackage rec {
''; '';
homepage = https://github.com/gpodder/mygpoclient; homepage = https://github.com/gpodder/mygpoclient;
license = with licenses; [ gpl3 ]; license = with licenses; [ gpl3 ];
platforms = with platforms; linux ++ darwin;
maintainers = with maintainers; [ skeidel ]; maintainers = with maintainers; [ skeidel ];
}; };
} }