lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python.pkgs.mygpoclient: fix expression

+2 -3
+2 -3
pkgs/development/python-modules/mygpoclient/default.nix
··· 1 1 { stdenv, fetchFromGitHub, buildPythonPackage, nose, minimock }: 2 2 3 3 buildPythonPackage rec { 4 - name = "mygpoclient-${version}"; 4 + pname = "mypgoclient"; 5 5 version = "1.8"; 6 6 7 7 src = fetchFromGitHub { ··· 11 11 sha256 = "0aa28wc55x3rxa7clwfv5v5500ffyaq0vkxaa3v01y1r93dxkdvp"; 12 12 }; 13 13 14 - buildInputs = [ nose minimock ]; 14 + checkInputs = [ nose minimock ]; 15 15 16 16 checkPhase = '' 17 17 nosetests ··· 25 25 ''; 26 26 homepage = https://github.com/gpodder/mygpoclient; 27 27 license = with licenses; [ gpl3 ]; 28 - platforms = with platforms; linux ++ darwin; 29 28 maintainers = with maintainers; [ skeidel ]; 30 29 }; 31 30 }