linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / genanki / default.nix
blob3f217afd8bb052b93d76767812ea3f622039bf4c
1 { lib, buildPythonPackage, fetchPypi, isPy3k
2 , cached-property, frozendict, pystache, pyyaml, pytest, pytestrunner
3 }:
5 buildPythonPackage rec {
6   pname = "genanki";
7   version = "0.10.1";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "ced1ddcaecc37289c65c26affb20027705e3821e692327e354e0d5b9b0fd8446";
12   };
14   propagatedBuildInputs = [
15     pytestrunner
16     cached-property
17     frozendict
18     pystache
19     pyyaml
20   ];
22   checkInputs = [ pytest ];
24   disabled = !isPy3k;
26   # relies on upstream anki
27   doCheck = false;
28   checkPhase = ''
29     py.test
30   '';
32   meta = with lib; {
33     homepage = "https://github.com/kerrickstaley/genanki";
34     description = "Generate Anki decks programmatically";
35     license = licenses.mit;
36     maintainers = with maintainers; [ teto ];
37   };