summary refs log tree commit diff
path: root/pkgs/development/python-modules/atom/default.nix
blob: 0a7dbf561a0f8399e648f343c46e8d3f8ce904af (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
{ lib, buildPythonPackage, fetchPypi, future }:

buildPythonPackage rec {
  pname = "atom";
  version = "0.4.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0awzja4k3f32y01gd068yyxvh35km62m4wka0vbg1yyy37ahgjmv";
  };

  propagatedBuildInputs = [ future ];

  # Tests not released to pypi
  doCheck = true;

  meta = with lib; {
    description = "Memory efficient Python objects";
    maintainers = [ maintainers.bhipple ];
    homepage = https://github.com/nucleic/atom;
    license = licenses.bsd3;
  };
}