22 lines
545 B
Nix
22 lines
545 B
Nix
{ lib, buildPythonPackage, fetchPypi, six, random2 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pysol-cards";
|
|
version = "0.16.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "pysol_cards";
|
|
hash = "sha256-C4fKez+ZFVzM08/XOfc593RNb4GYIixtSToDSj1FcMM=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six random2 ];
|
|
|
|
meta = with lib; {
|
|
description = "Generates Solitaire deals";
|
|
homepage = "https://github.com/shlomif/pysol_cards";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mwolfe ];
|
|
};
|
|
}
|