nixpkgs/pkgs/development/python-modules/atom/default.nix

25 lines
572 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, future, cppy }:
2018-10-10 03:02:27 +02:00
buildPythonPackage rec {
pname = "atom";
2020-06-06 08:46:57 +02:00
version = "0.5.1";
2018-10-10 03:02:27 +02:00
src = fetchPypi {
inherit pname version;
2020-06-06 08:46:57 +02:00
sha256 = "ce0c600e4b26b7553c926b3b8253df7ae19bbf2678bdc2d46eb29b5f9149f172";
2018-10-10 03:02:27 +02:00
};
buildInputs = [ cppy ];
2018-10-10 03:02:27 +02: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-10 03:02:27 +02:00
license = licenses.bsd3;
};
}