1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "flametree";
8 version = "0.1.11";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "c8eb81dea8c7f8261a2aa03d2bac98b1d21ebceec9c67efaac423f7c1b4fe061";
13 };
14
15 # no tests in tarball
16 doCheck = false;
17
18 pythonImportsCheck = [ "flametree" ];
19
20 meta = with lib; {
21 homepage = "https://github.com/Edinburgh-Genome-Foundry/Flametree";
22 description = "Python file and zip operations made easy";
23 license = licenses.mit;
24 maintainers = with maintainers; [ prusnak ];
25 };
26}