1{ lib, buildPythonPackage, fetchPypi, future, cppy }:
2
3buildPythonPackage rec {
4 pname = "atom";
5 version = "0.6.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "df65a654744ccdc4843ce09c38612fd8f702c84be501b1d955c3ac0b9ad28dc5";
10 };
11
12 buildInputs = [ cppy ];
13 propagatedBuildInputs = [ future ];
14
15 # Tests not released to pypi
16 doCheck = true;
17
18 meta = with lib; {
19 description = "Memory efficient Python objects";
20 maintainers = [ maintainers.bhipple ];
21 homepage = "https://github.com/nucleic/atom";
22 license = licenses.bsd3;
23 };
24}