Skip to content

Commit

Permalink
Merge pull request #48133 from bhipple/add/atom
Browse files Browse the repository at this point in the history
pythonPackages.atom: init at 0.4.1
  • Loading branch information
nlewo committed Oct 12, 2018
2 parents 6ab21f4 + cd1f591 commit 68e1e0e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
23 changes: 23 additions & 0 deletions pkgs/development/python-modules/atom/default.nix
@@ -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;
};
}
4 changes: 3 additions & 1 deletion pkgs/top-level/python-packages.nix
Expand Up @@ -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;
Expand Down

0 comments on commit 68e1e0e

Please sign in to comment.