Merge pull request #48133 from bhipple/add/atom
pythonPackages.atom: init at 0.4.1
This commit is contained in:
commit
68e1e0e5fe
23
pkgs/development/python-modules/atom/default.nix
Normal file
23
pkgs/development/python-modules/atom/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -192,6 +192,8 @@ in {
|
|||||||
|
|
||||||
astropy = callPackage ../development/python-modules/astropy { };
|
astropy = callPackage ../development/python-modules/astropy { };
|
||||||
|
|
||||||
|
atom = callPackage ../development/python-modules/atom { };
|
||||||
|
|
||||||
augeas = callPackage ../development/python-modules/augeas {
|
augeas = callPackage ../development/python-modules/augeas {
|
||||||
inherit (pkgs) augeas;
|
inherit (pkgs) augeas;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user