pythonPackages.atom: init at 0.4.1

This commit is contained in:
Benjamin Hipple 2018-10-09 21:02:27 -04:00
parent acc2bd15e1
commit cd1f5914bd
2 changed files with 26 additions and 1 deletions

View File

@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchPypi, future }:
buildPythonPackage rec {
pname = "atom";
version = "0.4.1";
src = fetchPypi {
inherit pname version;
sha256 = "0awzja4k3f32y01gd068yyxvh35km62m4wka0vbg1yyy37ahgjmv";
};
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;
};
}

View File

@ -192,6 +192,8 @@ in {
astropy = callPackage ../development/python-modules/astropy { };
atom = callPackage ../development/python-modules/atom { };
augeas = callPackage ../development/python-modules/augeas {
inherit (pkgs) augeas;
};