Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at gcc-offload 32 lines 599 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 six, 6 random2, 7}: 8 9buildPythonPackage rec { 10 pname = "pysol-cards"; 11 version = "0.18.0"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit version; 16 pname = "pysol_cards"; 17 hash = "sha256-KRlurdUaVKe/hT0K7LoWiFOQOiSAO4VUcT6Mf8xzLCw="; 18 }; 19 20 propagatedBuildInputs = [ 21 six 22 random2 23 ]; 24 25 meta = with lib; { 26 description = "Generates Solitaire deals"; 27 mainProgram = "pysol_cards"; 28 homepage = "https://github.com/shlomif/pysol_cards"; 29 license = licenses.mit; 30 maintainers = with maintainers; [ mwolfe ]; 31 }; 32}