1{ lib, buildPythonPackage, fetchPypi, six, random2 }:
2
3buildPythonPackage rec {
4 pname = "pysol-cards";
5 version = "0.14.3";
6
7 src = fetchPypi {
8 inherit version;
9 pname = "pysol_cards";
10 hash = "sha256-sPv9OGFb/G/XVdq1hQWprhYtDaGGbCXKkUGTi1gj8GE=";
11 };
12
13 propagatedBuildInputs = [ six random2 ];
14
15 meta = with lib; {
16 description = "Generates Solitaire deals";
17 homepage = "https://github.com/shlomif/pysol_cards";
18 license = licenses.mit;
19 maintainers = with maintainers; [ mwolfe ];
20 };
21}