about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/flametree/default.nix
blob: d4cba69afcb0f630777b1fd001b2ea32a0a922ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "flametree";
  version = "0.1.11";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c8eb81dea8c7f8261a2aa03d2bac98b1d21ebceec9c67efaac423f7c1b4fe061";
  };

  # no tests in tarball
  doCheck = false;

  pythonImportsCheck = [ "flametree" ];

  meta = with lib; {
    homepage = "https://github.com/Edinburgh-Genome-Foundry/Flametree";
    description = "Python file and zip operations made easy";
    license = licenses.mit;
    maintainers = with maintainers; [ prusnak ];
  };
}