2020-06-08 19:48:05 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, future, cppy }:
|
2018-10-10 02:02:27 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "atom";
|
2020-11-20 06:07:51 +00:00
|
|
|
version = "0.6.0";
|
2018-10-10 02:02:27 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-20 06:07:51 +00:00
|
|
|
sha256 = "df65a654744ccdc4843ce09c38612fd8f702c84be501b1d955c3ac0b9ad28dc5";
|
2018-10-10 02:02:27 +01:00
|
|
|
};
|
|
|
|
|
2020-06-08 19:48:05 +01:00
|
|
|
buildInputs = [ cppy ];
|
2018-10-10 02:02:27 +01:00
|
|
|
propagatedBuildInputs = [ future ];
|
|
|
|
|
|
|
|
# Tests not released to pypi
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Memory efficient Python objects";
|
|
|
|
maintainers = [ maintainers.bhipple ];
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/nucleic/atom";
|
2018-10-10 02:02:27 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|