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

24 lines
538 B
Nix
Raw Normal View History

2018-10-10 02:02:27 +01:00
{ lib, buildPythonPackage, fetchPypi, future }:
buildPythonPackage rec {
pname = "atom";
2019-02-23 14:36:00 +00:00
version = "0.4.3";
2018-10-10 02:02:27 +01:00
src = fetchPypi {
inherit pname version;
2019-02-23 14:36:00 +00:00
sha256 = "ce96fb50326a3bfa084463dbde1cf2e02c92735e5bc324d836355c25af87e0ae";
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 ];
homepage = https://github.com/nucleic/atom;
license = licenses.bsd3;
};
}