1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-28 20:16:41 +03:00
nixpkgs/pkgs/development/python-modules/atom/default.nix

25 lines
572 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, future, cppy }:
2018-10-09 21:02:27 -04:00
buildPythonPackage rec {
pname = "atom";
2020-07-31 10:56:35 +02:00
version = "0.5.2";
2018-10-09 21:02:27 -04:00
src = fetchPypi {
inherit pname version;
2020-07-31 10:56:35 +02:00
sha256 = "99b4c94b833aafffc0b34ab8f98b697f575be3230bff38ebf863d065403333e0";
2018-10-09 21:02:27 -04:00
};
buildInputs = [ cppy ];
2018-10-09 21:02:27 -04:00
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";
2018-10-09 21:02:27 -04:00
license = licenses.bsd3;
};
}