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

22 lines
574 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
pname = "atomicwrites";
2019-02-14 07:37:10 +00:00
version = "1.3.0";
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:10 +00:00
sha256 = "75a9445bac02d8d058d5e1fe689654ba5a6556a1dfd8ce6ec55a0ed79866cfa6";
};
# Tests depend on pytest but atomicwrites is a dependency of pytest
doCheck = false;
checkInputs = [ pytest ];
meta = with stdenv.lib; {
description = "Atomic file writes on POSIX";
homepage = https://pypi.python.org/pypi/atomicwrites;
maintainers = with maintainers; [ matthiasbeyer ];
};
}