Merge pull request #48133 from bhipple/add/atom

pythonPackages.atom: init at 0.4.1
This commit is contained in:
lewo 2018-10-12 08:39:09 +02:00 committed by GitHub
commit 68e1e0e5fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -190,7 +190,9 @@ in {
astral = callPackage ../development/python-modules/astral { };
astropy = callPackage ../development/python-modules/astropy { };
astropy = callPackage ../development/python-modules/astropy { };
atom = callPackage ../development/python-modules/atom { };
augeas = callPackage ../development/python-modules/augeas {
inherit (pkgs) augeas;