12 buildPythonPackage rec {
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
21 repo = "python-datauri";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-9BCYC8PW44pB348kkH7aB1YqXXN1VNcBHphlN503M6g=";
26 build-system = [ setuptools ];
28 dependencies = [ typing-extensions ];
35 pythonImportsCheck = [ "datauri" ];
38 description = "Module for Data URI manipulation";
39 homepage = "https://github.com/fcurella/python-datauri";
40 changelog = "https://github.com/fcurella/python-datauri/releases/tag/v${version}";
41 license = licenses.unlicense;
42 maintainers = with maintainers; [ yuu ];